-
-
Notifications
You must be signed in to change notification settings - Fork 2
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: This version of ChromeDriver only supports Chrome version (xxx) #16
Comments
I am struggling to use the IMDB-Trakt-Syncer script without having Chrome installed. I fit a scenario where I cannot install Chrome on this PC, and therefore the ChromeDriver "cannot find Chrome binary". I can however have "Chrome for testing" extracted as a portable/zip, from a site such as this. Would it be possible to point the ChromeDriver to this binary, and if so how does one do that? Update: As soon as I posted this, I realized what I must do. I extracted the Chrome For Testing binary zip, then made a symbolic link to it (although moving the folder would work exactly the same) into |
@profucius Nice yeah that's a clever way to do it. You could also modify At some point I may add functionality that doesn't require Chrome install, and having the script download portable Chrome from that link you mentioned. Only issue with this is, the downloaded portable files wouldn't uninstall using the traditional uninstall method, |
Problem:
Error wrong chromedriver version installed.
Solution 1:
python -m pip uninstall chromedriver-py
in command line.Solution 2:
python -m pip uninstall chromedriver-py
in command line.chrome://settings/help
.Settings > About Chrome
in your Chrome browser.112.0.5615.49
.python -m pip install chromedriver-py==VERSION_NUMBER
in command line. ReplaceVERSION_NUMBER
with the version you copied in step 3. Press enter to install.The text was updated successfully, but these errors were encountered: