Closed charizardmatok closed 1 year ago
Hi,
This happens because your IP reputation is low or you've solved too many challenges in a row.
This package already has built-in bypasses for most checks but can't bypass IP blacklists, so try using/rotating proxies with your web driver to make the problem go away. Otherwise, you can wait a few hours for Google to unblacklist your IP and keep solving then.
Let me know if anything needs to be clarified, and thanks for making this issue.
I have the same issue rn and switching IPs does not help =(
The issue seems to be with UC. In regular Chrome it works ok when I try to solve using audio but via UC it does not work properly
Hi @maximusrus,
Thanks for letting me know.
I'm going to try out using a regular chrome driver and see how it performs; If it works, I'll deploy a new version of the package using a regular web driver instead.
Hi,
To get back to you both, the tests I've done were mixed, but they generally seem to point out that there is something wrong with the undetected Chrome driver.
I'll update the example to use a regular Chrome driver for now.
Thank you both!
Hi,
To get back to you both, the tests I've done were mixed, but they generally seem to point out that there is something wrong with the undetected Chrome driver.
I'll update the example to use a regular Chrome driver for now.
Thank you both!
No problem, but unfortunately, I have encountered the issue using regular chromedriver as well :(
So the solver clicks the 'not a robot' checkbox, the images appear, and as soon as it clicks 'listen to recording', a message is printed out and the captcha is disabled, the message says:
“Your Computer May Be Sending Automated Queries"
This renders my selenium bot useless and helpless as any following attempts to solve captchas give the same result.
Expected behaviour The recording is chosen, the transcript is written for submission and the captcha is solved.
Desktop (please complete the following information):
Additional context This is my undetected browser and solver setup: `` ua = 'Mozilla/5.0 (Windows NT 4.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/37.0.2049.0 Safari/537.36'
options = webdriver.ChromeOptions()
options.add_argument("--window-size=1920,1080")
options.add_argument(f'--user-agent={ua}') options.add_argument('--incognito')
options.add_argument('--no-sandbox') options.add_argument("--disable-extensions")
browser = webdriver.Chrome(options=options)
solver = RecaptchaSolver(driver=browser, delay_config=StandardDelayConfig(min_delay=2, max_delay=3)) ``