ChromeDriver overview

ChromeDriver is a standalone server that implements the W3C WebDriver standard. WebDriver is an open source tool built for automated testing of webapps across many browsers. Its interface allows for control and introspection of user agents locally or remotely using capabilities.

Capabilities are a language-neutral set of key-value pairs used to define the desired features and behavior of a WebDriver session. Capabilities are typically passed as an argument when creating a WebDriver instance, and can be used to specify browser settings, such as the browser name, version, and page loading strategy.

ChromeDriver extends Webdriver by adding Chromium-specific capabilities. It uses the ChromeOptions object to pass capabilities to ChromeDriver from the WebDriver API. Some Chromium-specific capabilities include the ability to install extensions, change window types, and pass command line arguments on startup.

ChromeDriver is available for Chrome on Android and Chrome on Desktop (Mac, Linux, Windows and ChromeOS).

You can view the current implementation status of the WebDriver standard here.

Latest ChromeDriver binaries

ChromeDriver documentation

Troubleshoot

Get involved