# python-chromedriver-autoinstaller **Repository Path**: ianduin/python-chromedriver-autoinstaller ## Basic Information - **Project Name**: python-chromedriver-autoinstaller - **Description**: The chromedriver auto installer for distribution. - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 1 - **Forks**: 0 - **Created**: 2021-06-06 - **Last Updated**: 2022-06-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # chromedriver-autoinstaller Automatically download and install [chromedriver](https://chromedriver.chromium.org/) that supports the currently installed version of chrome. This installer supports Linux, MacOS and Windows operating systems. ## Installation ```bash 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 ```