-
-
Notifications
You must be signed in to change notification settings - Fork 113
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 #151
Comments
hello i've got error |
Add |
Thanks, I'll check it out.
…On Sat, 20 Apr 2024 at 07:37, s33k3rs ***@***.***> wrote:
Add from selenium.webdriver.chrome.service import Service as ChromeService
and change
if not browser: browser = webdriver.Chrome(
ChromeDriverManager().install(), options=self.chrome_options, )
to
browser = webdriver.Chrome(
service=ChromeService(ChromeDriverManager().install()),
options=self.chrome_options )
on file /home/dharma/.local/lib/python3.10/site-packages/alright/init.py
—
Reply to this email directly, view it on GitHub
<#151 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AVTTXYGY3SWOGJPHDD75Z6DY6HEXXAVCNFSM6AAAAABGE75USGVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDANRXGUYTGNBZGE>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
--
Nitkarsh Chourasia
|
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'
The text was updated successfully, but these errors were encountered: