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
AttributeError: 'ChromeOptions' object has no attribute 'headless'
driver = uc.Chrome(headless=False) driver.get("https://www.google.com")
it works when using
options = ChromeOptions() options.add_argument('--headless') ... options=options
The text was updated successfully, but these errors were encountered:
downgrade selenium to 4.11.2.
Sorry, something went wrong.
I think it actually works with this little change #1647.
It works for me if you use:
options = uc.ChromeOptions() options.headless = False # or True driver = uc.Chrome(options=options)
not working
No branches or pull requests
AttributeError: 'ChromeOptions' object has no attribute 'headless'
it works when using
The text was updated successfully, but these errors were encountered: