Recaptcha in the background how do I ignore it with Selenium?

gm90

Junior Member
Joined
Feb 15, 2018
Messages
160
Reaction score
45
Hi,
I have a python script to mass create accounts on a website.
The script was working fine and I created around 40 account in 10 hours, but from5 hours I can't create new account anymore.
When Selenium type the info for a new account registration, I get the greenlight from the form (meaning no one has that info yet) but as soon as Selenium click the create account button, An error occur and while browsing the error on Google, it seems to be a recaptcha error.

But it's odd cause on the page there isn't a captcha to solve. I checked the source code and recaptcha is it called in some css class. Does this means there is a recaptcha working in the background? How do I ignore it with selenium?
 
Check the network tab in chrome dev tools and see what requests are being made, normally if it's protected by recaptcha it should be a request to recaptcha api , also check the button html code and it's attributes if there is something related to captcha
 
Check the network tab in chrome dev tools and see what requests are being made, normally if it's protected by recaptcha it should be a request to recaptcha api , also check the button html code and it's attributes if there is something related to captcha
Yes, the button html code has a css class related to recaptcha

btn-recaptcha-submit
and yes in the network tab there are requests to recaptcha
 
Last edited:
U need to split test diferent action to find where the issue is. Like for example try making an account in normal browser with proxy if works then your bot is being detected.

It would be more helpful if you post here what error are you getting. You can P.M the link maybe I can look into it
 
Back
Top