Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/adistomar/chromedriver_autoinstall

Script to automatically install the ChromeDriver release compatible with the client's Chrome version.
https://github.com/adistomar/chromedriver_autoinstall

autoinstall autoinstaller autoinstallscript automation chromedriver script

Last synced: about 1 month ago
JSON representation

Script to automatically install the ChromeDriver release compatible with the client's Chrome version.

Awesome Lists containing this project

README

        

# chromedriver_autoinstall
Automatically downloads the version of [ChromeDriver](https://chromedriver.chromium.org/downloads) compatible with the client's version of Chrome. Supports all versions of Chrome.
Can be imported as a module and used to automatically reinstall ChromeDriver in its most updated/compatible version for any program that requires it.

## Install:
#### Python 3.6 or higher is required
```shell
pip install chromedriver_autoinstall
```

## Usage:
- To download chromedriver in the current directory, run `install_chromedriver`.
- To use the autoinstaller as part of a program, write `import chromedriver_autoinstall` in your file. See the [example below](https://github.com/RoastSea8/chromedriver_autoinstall#readme) for this use case.

## Quick Example:
```py
from selenium import webdriver
import chromedriver_autoinstall
import time

URL = "https://github.com/RoastSea8/chromedriver_autoinstall"

def main():
chromedriver_autoinstall.install()
driver = webdriver.Chrome()
driver.get(URL)
time.sleep(1000)

if __name__ == "__main__":
main()
```