Website get detected? #1771
Replies: 3 comments 5 replies
-
You can try SeleniumBase UC Mode. The algorithm is 90% undetected-chromedriver's algorithm, but with some changes around naming, options, customizations, default timing, and new methods. (Some changes have open pull requests in this repo.) from seleniumbase import Driver
driver = Driver(uc=True)
driver.uc_open_with_reconnect("https://ballzy.eu/en/men/sport/shoes", 5)
breakpoint()
driver.quit() I didn't see any CAPTCHAs when I ran that. Type |
Beta Was this translation helpful? Give feedback.
-
ok i understand - the reason why i am asking that one of my clients has a problem with selenium base on his computer |
Beta Was this translation helpful? Give feedback.
-
Hello - i tested it now with the following code-snippet -
When i run the python-file normally it seems to work with this output:
But when i bundle the code to a windows executable with this command
I get this error / log:
Why is this not working with the bundled exe-file? |
Beta Was this translation helpful? Give feedback.
-
Hello - i try to get the following site using the following code:
But when i run this code it seems the driver is still detected and i get the cloudflare challenge.
Why is this not working using the above code?
Beta Was this translation helpful? Give feedback.
All reactions