SergeyPirogov / webdriver_manager

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

How to load version 114 of chrome

elearning-x opened this issue · comments

Hello

I'm trying to load the latest version of Chrome but without success with the following commands.

driver = webdriver.Chrome(service=ChromeService(
                                ChromeDriverManager(url="https://chromedriver.storage.googleapis.com/index.html?path=114.0.5735.90/", 
                                                    latest_release_url="https://chromedriver.storage.googleapis.com/LATEST_RELEASE_114.0.5735").install()),
                                                    options=options)

if I try the following:

 driver = webdriver.Chrome(service=ChromeService(
                                ChromeDriverManager(driver_version="114.0.5735").install()), options=options)

it generates an error

ValueError: There is no such driver by url https://chromedriver.storage.googleapis.com/114.0.5735/chromedriver_mac_arm64.zip

Can I do it ?
What would be the correct command ?

Thanks a lot

@elearning-x try "114.0.5735.90"

It was discussed on the initial work to support the new chrome endpoints, about potentially continuing to support the shorter forms for versions such as "144" or "144.0.5735". I'll link to the commit where it was implemented but never merged incase its of interest to the maintainers or someone looking to patch for themselves - 6355e71