Skip to main content

Package for installing the latest chromedriver/geckodriver automatically.

Project description

Selenium Web Driver Installer Build Status

This is a super-simple package that can automatically find & download the newest (or whichever you specify) version of the Google Chrome (chromedriver) or Firefox (geckodriver) web drivers.

This project was built to allow developers to seamlessly include selenium support on the user-side, without requiring any manual configuration on their part.

It is tested on Windows/Linx/Mac, and supports os-specific permissions.

To install the library, run:

pip install chromedriver-install

Then call it in your code like so:

import chromedriver_install as cdi
path = cdi.install(browser=cdi.chrome, file_directory='./lib/', verbose=True, chmod=True, overwrite=False, version=None, filename=None, return_info=False)
print('Installed chromedriver to path: %s' % path)

There are options for the output directory, disabling printout, running chmod on the downloaded executable, automatic overwriting, executable file name, and version number. All parameters are optional, and the default values are listed above.

To download Firefox, simply change the browser parameter:

import chromedriver_install as cdi
path = cdi.install(browser=cdi.firefox)
print('Installed geckodriver driver to path: %s' % path)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyderman-1.0.0.tar.gz (3.9 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page