Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 336 Bytes

README.md

File metadata and controls

10 lines (9 loc) · 336 Bytes

Chromedriver-Updater

Just add to your project, in the same folder that you have the chromedriver and use:

try:
    browser = webdriver.Chrome(executable_path= folder + '/chromedriver')
except Exception as error:
    update_chromedriver.start(error)
    browser = webdriver.Chrome(executable_path= folder + '/chromedriver')