seleniumbase / SeleniumBase

📊 Python's all-in-one framework for web crawling, scraping, testing, and reporting. Supports pytest. UC Mode provides stealth. Includes many tools.
https://seleniumbase.io
MIT License
4.45k stars 908 forks source link

Element is not clickable at point (916, 785) #2827

Closed marconimedeiros2 closed 4 weeks ago

marconimedeiros2 commented 4 weeks ago

How to solve it?

Normally I would solve resizing the window, clicking by xpath, etc, but I cant found how to do it with SB.

Anyone can help me?

The element: driver.click("//*[@id='sendButton']")

mdmintz commented 4 weeks ago

Use driver.js_click(selector) with a CSS Selector when that happens.

In your case, it would be: driver.js_click("#sendButton")