chromedriver配置

学习selenium,刚开始就遇到了问题。

下面是记录的一些解决方法

  1. 先到 http://chromedriver.storage.googleapis.com/index.html 选择下载相应的版本

浏览器版本查看方法:
打开chrome 输入 “chrome://version/”来查看chrome版本

  1. 解决报错方法

    1. 在文件中添加路径

      1
      2
      3
      4
      5
      6
      7
      8
      9
      # 事例
      from selenium import webdriver

      driver = webdriver.Chrome(r"E:\Tools\Python\seleniumDriver\chromedriver.exe"river = webdriver.Chrome(r"E:\Tools\Python\seleniumDriver\chromedriver.exe")

      browser = webdriver.Chrome()
      browser.get('https://www.baidu.com')
      print(browser.page_source)
      browser.close()
    2. 根本解决方法
      将下载的chromedriver.exe直接放到python安装根目录

感谢各位大佬提供的方法,参考blog

幽冥狂_七
2018 遇到selenium.common.exceptions.WebDriverException问题