Course Content
Selenium Python First Script
Selenium Python First Script
0/2
HTML Form elements
HTML Form elements
0/1
Handle HTML Frames
Handle HTML Frames
0/2
Handling Dropdown Lists
Handling Dropdown Lists
0/2
Selenium Action class
Selenium Action class
0/1
Selenium Python for Beginners [ 2024 ]
About Lesson

Google Chrome Driver

Chrome driver lets you automate web interactions on the Google Chrome browser. Make sure you have the latest Chrome browser version.

To check the Google Chrome browser version:

Three dots button >> Help >> About Google Chrome

Alternatively, type the following in the address bar:

chrome://settings/help Google Chrome Browser Version

Download Chrome Driver

The link to download the Chrome driver is as follows:

Google Chrome can run on multiple operating systems and devices. When downloading it, you must choose the operating system. For desktop Google ChromeDriver, choose the operating system.

  • Windows
  • Linux
  • Mac

Windows you can choose from Win32 or Win64( 64-bit architecture ) The Chrome driver has different channels:

  • Stable Release
  • Canary Release

Pick it up and download it from the Stable release channel.

Chrome Driver Windows Download 64-bit

Most modern Windows machines are 64-bit. For example, download the win64 system driver.

Copy the URL to the browser address bar and download the

chromedriver-win64.zip file.

Extract the chromedriver.exe file. This driver interacts with the Google Chrome browser and stands between the Selenium WebDriver API and the web browser.( on Windows operating system)

Recommended: Copy the driver .exe file under the Eclipse project folder and add the folder path to the PATH environment variable.

Join the conversation