-
I have been using Seleniumbase for a while with UC mode and the truth is that it surprises me how well it works but it has been several days since the driver has been detected. Is there any suggestion? I am using time.sleep to access hrefs to avoid web server overload. I leave my code. The anti-bot challenge is the typical one of pressing a checkbox
Thank you @mdmintz |
Beta Was this translation helpful? Give feedback.
Answered by
mdmintz
Oct 21, 2023
Replies: 1 comment 2 replies
-
Upgrade to the latest version of from seleniumbase import Driver
import time
driver = Driver(uc=True)
driver.get("https://nowsecure.nl/#relax")
time.sleep(6)
driver.quit() (It's working for me) |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
mdmintz
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Upgrade to the latest version of
seleniumbase
, and run the basic script:(It's working for me)