Replies: 2 comments 1 reply
-
Found a solution for the problem. If you are using the DIR folder that currently has a browser profile open. it will not work. you have to close everything first and then run it. That was the workaround for it for me. |
Beta Was this translation helpful? Give feedback.
1 reply
-
not sure if @MortazaG has already found the solution, but you can simply do this:
|
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi!
I uninstalled Chrome today and installed an older version of Chromium browser instead, version 109.
I've downloaded the proper chromedriver and at first I got this error:
Which was fixed by adding:
options.binary_location = 'C:/Users/username/AppData/Local/Chromium/Application/chrome.exe'
Although, using regular Selenium there was no need for setting this path.
After setting the path to the binary file, I now get this error message:
I have double and triple checked that I have downloaded the right version of the chromedriver.
I have set its path through:
path = 'D:/path/to/chromedriver.exe'
driver = uc.Chrome(options=options, executable_path=path)
But I am still getting the above error message.
Is there a specific way of setting up undetected_chromedriver to work properly with the Chromium browser?
Beta Was this translation helpful? Give feedback.
All reactions