shawnCaza / python-chromedriver-autoupdater

The chromedriver auto upddater for distribution.

Home Page:https://pypi.org/project/chromedriver-autoupdater/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

chromedriver-autoinstaller

Automatically download and install chromedriver that supports the currently installed version of chrome. This installer supports Linux, MacOS and Windows operating systems.

Installation

pip install chromedriver-autoinstaller

Usage

Just type import chromedriver_autoinstaller in the module you want to use chromedriver.

Example

from selenium import webdriver
import chromedriver_autoinstaller


chromedriver_autoinstaller.install()  # Check if the current version of chromedriver exists
                                      # and if it doesn't exist, download it automatically,
                                      # then add chromedriver to path

driver = webdriver.Chrome()
driver.get("http://www.python.org")
assert "Python" in driver.title

About

The chromedriver auto upddater for distribution.

https://pypi.org/project/chromedriver-autoupdater/

License:MIT License


Languages

Language:Python 100.0%