Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 622 Bytes

chromedriver.md

File metadata and controls

9 lines (8 loc) · 622 Bytes

关于配置 chromedriver 环境

  1. chrome 浏览器上确认浏览器的环境 chrome版本
  2. http://chromedriver.storage.googleapis.com/index.html 里,找到对应的 chromedriver 版本 chromedriver版本
  3. 下载该chromedriver 版本,并在使用selenium时,指定该驱动的路径即可,如下:
    driver = webdriver.Chrome(executable_path=f'{os.path.abspath(os.path.dirname(os.getcwd()))}/driver_path/chromedriver',options=option)