Replies: 1 comment
-
Since you're doing more than just navigating to a website, try the newer UC Mode examples where clicking is required:
Also, you may need to use from seleniumbase import Driver
driver = Driver(uc=True)
driver.uc_open_with_reconnect(URL, reconnect_time=5)
# ...
driver.quit() See https://www.youtube.com/watch?v=5dMFI3e85ig for all details. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
As soon as I start a browser Session with the seleniumbase chromedriver and try to enter Credit Card Credentials to buy a item on a certein site, it wont let be buy the item and the website says "Cannot connect to Captcha service". All of this happens inside of an iFrame of this website. It seems to be hidden captcha, because normally you dont need to check a field or anything else when you do this.
I do pass any other bot protections like https://nowsecure.nl/#relax when using seleniumbase.
When I enter the Credit Card Informations and buy the Item on my normal Browser without seleniumbase, it works with no problem. Same PC, same ISP, same Chrome Profile.
This is my current code:
from seleniumbase import Driver
driver = Driver(uc=True, undetectable=True, undetected=True, agent="Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", user_data_dir="C:/Users/Admin/AppData/Local/Google/Chrome/User Data")
driver.open(">linktowebsite>")
Do you guys know any arguments I could add or bypasses of Bot Protection I could try to prevent this? Thank you in advance.
Beta Was this translation helpful? Give feedback.
All reactions