Skip to content
Advertisement

ValueError: There is no such driver by url (chromedriver_mac64_m1.zip)

I’m running a script with Selenium but just a couple days ago I started to receive the error below:

JavaScript

I’ve tried to do some research on GitHub back can’t figure out the error https://github.com/SergeyPirogov/webdriver_manager/issues/443

Advertisement

Answer

Because google has changed the link to chromedriver for apple silicon macs, It seems that the new link is https://chromedriver.storage.googleapis.com/106.0.5249.61/chromedriver_mac_arm64.zip, and the maintainer of webdriver-manager has not patched it yet. When they do you can try updating your webdriver_manager.

JavaScript

But for now, you should go directly to the link above and download chromedriver directly. You can import it using selenium after you unzip it and the rest of your code will stay the same.

The code will go something like,

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement