claudiofepereira / nocaptchaai-selenium

Selenium wrapper for the nocaptchaAI.com API.
MIT License
3 stars 1 forks source link

Outdated #4

Closed Shaeikh closed 1 year ago

Shaeikh commented 1 year ago
selenium.common.exceptions.ElementClickInterceptedException: Message: element click intercepted: Element <div class="task-image" style="transition: none 0s ease 0s; width: 120px; height: 120px; position: absolute;">...</div> is not 
clickable at point (200, 190). Other element would receive the click: <div class="border" style="opacity: 0; width: 
120px; height: 120px; position: absolute; left: 0px; top: 0px; overflow: hidden; border-radius: 2px; z-index: 5;">...</div>

Its seems like the hCaptcha is updated as well as there elements on pages are updated too

claudiofepereira commented 1 year ago

Problem with selenium .click() method. Updated to use .execute_script("arguments[0].click();", images[index]).

Shaeikh commented 1 year ago

thnx it worked