breuerfelix / chromedriver-py

chromedriver self updated binaries for all platforms
https://pypi.org/project/chromedriver-py/
Apache License 2.0
50 stars 16 forks source link

This version of ChromeDriver only supports Chrome version 85 #4

Closed frankstallone closed 4 years ago

frankstallone commented 4 years ago

Chrome seems to think I am on the latest, 84, and yet the latest chromedriver_py only supports 85. How do I resolve this? How do I reconcile this?

Screen Shot 2020-08-24 at 4 32 18 PM
breuerfelix commented 4 years ago

pretty interesting... so chromedriver is newer than the actual chrome :D

resolving this is pretty easy. just head over here: https://pypi.org/project/chromedriver-py/#history
and then pick the appropiate version which is 84 in your case. click it, and on the top you get the pip install command for this version which is in your case: pip install chromedriver-py==84.0.4147.30

and voila, that should work :)

frankstallone commented 4 years ago

Perfect! I figured there would be a way to specify a version but did not find it in the docs. That worked, thank you!