You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Uninstall chromedriver-py by running python -m pip uninstall chromedriver-py in command line.
Run the script again. It should download the required version. If you encounter the same error, proceed to solution 2.
Solution 2:
Uninstall chromedriver-py by running python -m pip uninstall chromedriver-py in command line.
Determine your current Chrome browser version:
Open your Chrome browser and go to chrome://settings/help.
Alternatively, go to Settings > About Chrome in your Chrome browser.
Check the version number (e.g., 112... or 111, etc.).
Visit the chromedriver-py releases page and find the latest version that matches the prefix your Chrome version. Copy the corresponding version number. For example, if you are using Chrome version 112..., you would need version 112.0.5615.49.
Install the correct chromedriver version by running python -m pip install chromedriver-py==VERSION_NUMBER in command line. Replace VERSION_NUMBER with the version you copied in step 3. Press enter to install.
Run the script again. It should now function properly.
The text was updated successfully, but these errors were encountered:
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: