shadowmoose / pyderman

Install Selenium-compatible Chrome/Firefox/Opera/PhantomJS/Edge webdrivers automatically.
MIT License
29 stars 11 forks source link

updating Chrome download URL for M1 macs #29

Closed KurtLeimeister closed 1 year ago

KurtLeimeister commented 1 year ago

Older URLs until 105: https://chromedriver.storage.googleapis.com/105.0.5195.19/chromedriver_mac64_m1.zip

New URLs, confirmed 106, 107, 108: https://chromedriver.storage.googleapis.com/108.0.5359.22/chromedriver_mac_arm64.zip

mentalisttraceur commented 1 year ago

This would break old downloads, right?

There's probably a decent amount of people out there who are interested in reproducible tests that are using fixed versions of the web drivers.

I recommend using an if statement for the old stuff, so that if the version passed in is "106.0.5249.21" or below, the old mac64_m1 is used - otherwise, the new mac_arm64.

shadowmoose commented 1 year ago

Missed this over the holidays. Thanks for the contribution.