We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hello,
I use this:
driver = Driver(uc_cdp=True, incognito=True, chromium_arg="--disable-search-engine-choice-screen") ... driver.uc_gui_click_captcha()
it has cloudflare. the code finds it, get the mark and thick it so it works but after get back to the same page which means it cannot avoid detection
it worked for months smoothly on 29th April stops working and I have the same problem every they
do you have any idea?
thank you in advance!
The text was updated successfully, but these errors were encountered:
Make sure you activate CDP Mode for stealth.
With the Driver format, that's: driver.uc_activate_cdp_mode(url)
Driver
driver.uc_activate_cdp_mode(url)
See examples/cdp_mode/raw_driver.py for a full example.
Sorry, something went wrong.
Thank you!
driver.uc_activate_cdp_mode(url) works. it bypass the cloudflare but after that i can't get the page source. after I can't use the driver.get(url)
do you have any solution to get the page source with uc_activate_cdp_mode?
In CDP Mode you have to use the CDP methods. Eg: driver.cdp.get_page_source().
driver.cdp.get_page_source()
No branches or pull requests
Hello,
I use this:
it has cloudflare. the code finds it, get the mark and thick it so it works
but after get back to the same page which means it cannot avoid detection
it worked for months smoothly
on 29th April stops working and I have the same problem every they
do you have any idea?
thank you in advance!
The text was updated successfully, but these errors were encountered: