-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
Error Chrome 118 #1605
Comments
It seems that version 118 is not yet supported, perhaps you need to go back to version 117 |
Fixed on mac by switching to beta release on OSX. Change browser binary path in candidates.update method call line 879 inside undected_chromedriver init.py file to "/Applications/Google Chrome Beta.app/Contents/MacOS/Google Chrome Beta". Hope it work for you too 🤟 |
I also had this issue. After debugging I found if there is chromedriver binary available in |
@faizanalhassan Can you explain your fix in more words? |
So, recently in a project I was using undetected-chromedriver and it was giving me an error that chromedriver.exe version is 114. I rechecked my chromedriver.exe was 118 and I was passing its path correctly through During debugging, I noticed that these lines are causing the problem: undetected-chromedriver/undetected_chromedriver/patcher.py Lines 132 to 141 in cea8071
So, even user has given a custom chromedriver path, it will always first check I removed all chromedriver binaries from that path and then my custom path was correctly used and no error was raised. I think the solution is to move the below lines to the top of this method. undetected-chromedriver/undetected_chromedriver/patcher.py Lines 147 to 152 in cea8071
|
Created a PR #1638 to fix this. Please check if works. |
Tried update Webdriver + Selenium too, but the error persists after update Chrome to version 118.
The text was updated successfully, but these errors were encountered: