Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 1.06 KB

README.md

File metadata and controls

31 lines (25 loc) · 1.06 KB

chromedriver_autoinstall

Automatically downloads the version of ChromeDriver 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

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 for this use case.

Quick Example:

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()