-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
waiting for get_by_role("checkbox", name="I'm not a robot") #6
Comments
Test this branch to see if this has fixed the issue:
|
Well, unsure if it is working actually |
It looks like this website is using reCAPTCHA v2 invisible for the "Learn More" > "Contact Us" form. In order to use this solver with this page, you must first fill out the information on the form and click the "Send" button in order for the reCAPTCHA to show. Then, you can call the |
@Xewdy444 OK thank you so much for that. |
Yes, you can pass a proxy to be used by the browser like this: With Authenticationbrowser = playwright.chromium.launch(
proxy={
"server": "http://1.1.1.1:3128",
"username": "username",
"password": "password",
}
) Without Authenticationbrowser = playwright.chromium.launch(proxy={"server": "http://1.1.1.1:3128"}) |
@Xewdy444 TypeError: launch() takes 1 positional argument but 2 were given |
Answer. need to include proxy= parmeter browser = await chromium.launch(proxy={ |
Sorry about that. I initially forgot to include |
testing recaptcha v2 and getting 'waiting for get_by_role("checkbox", name="I'm not a robot")' errors
Is there a solution for this available?
The text was updated successfully, but these errors were encountered: