4

I was working on my selenium project my chrome version is 114.0.5735.134 but i don't find the latest chrome driver here https://chromedriver.chromium.org/downloads

how can I run my script?

iori
  • 47
  • 1
  • 5

4 Answers4

3

Google recently has changed the build process for Chrome and ChromeDriver. Going forward, all the releases will be available at https://googlechromelabs.github.io/chrome-for-testing/. This is done to steamline the chrome and chrome driver versions. Now each chrome release would have its corresponding same version available.

More details can be found at the following links- https://developer.chrome.com/blog/chrome-for-testing/

Ajay Lamba
  • 71
  • 5
0

Not sure which selenium version are you using. If you are using Selenium v4.6.0 or above, you don't have to worry about downloading the chromedrover.exe. Selenium's new tool known as SeleniumManager will do the job of auto downloading and managing it for you.

enter image description here

Reference:

Python code can be as simple as below:

from selenium import webdriver

driver = webdriver.Chrome()
driver.get("https://www.google.com")

If you still want to manually download and use the chromedriver, then you can use the latest version 114.0.5735.90. See below for explanation:

enter image description here

Reference: https://sites.google.com/a/chromium.org/chromedriver/downloads/version-selection

Shawn
  • 4,064
  • 2
  • 11
  • 23
0

Incase you are using Selenium v4.6 and above you don't need to explicitly download ChromeDriver, GeckoDriver or any browser drivers as such. You just need to ensure that the desired browser client i.e. , or is installed. Selenium Manager is the new tool that would help to get a working environment to run Selenium out of the box. Beta 1 of Selenium Manager will configure the browser drivers for Chrome, Firefox, and Edge if they are not present on the PATH.


Solution

As a solution you can simply do:

from selenium import webdriver

driver = webdriver.Chrome()
undetected Selenium
  • 183,867
  • 41
  • 278
  • 352
0

you can download any driver supports chrome version 114

1PRO
  • 1
  • Your answer could be improved with additional supporting information. Please [edit] to add further details, such as citations or documentation, so that others can confirm that your answer is correct. You can find more information on how to write good answers [in the help center](/help/how-to-answer). – Community Jul 06 '23 at 18:18