-
-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
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
TypeError: WebDriver.__init__() got multiple values for argument 'options' #142
Comments
Yes, me too.
|
I am facing the same error. The error probably arose since a recent update of selenium. A solution has been suggested here but I am not sure how to apply that. Lets hope that the developer fixes it. Removing the line 40 "ChromeDriverManager().install()," from __ init __.py solved the issue for me |
Have you been able to remove that bug? |
Can not use selenium latest version, use selenium 4.2.0 but i've got new issue today, looks like whatsapp web change again |
this is currently working for me as well! |
This change is due to Selenium 4.10.0. the first argument is no longer executable_path, but options. (That's why it complains that you're passing it in twice.) If you want to pass in an executable_path, you'll have to use the service arg now.
Hi I've got error when trying to execute messenger = WhatsApp()
Got errort message:
Traceback (most recent call last):
File "", line 1, in
File "/home/dharma/.local/lib/python3.10/site-packages/alright/init.py", line 39, in init
browser = webdriver.Chrome(
TypeError: WebDriver.init() got multiple values for argument 'options'
OS Linux Mint 21.2 Victoria
The text was updated successfully, but these errors were encountered: