当前位置:   article > 正文

Selenium 报错:session not created: This version of ChromeDriver only supports Chrome version 81_info: error 'message: session not created: this ve

info: error 'message: session not created: this version of chromedriver only

问题

最近需要用selenium完成一个自动化测试,出现了以下错误:

selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 81

应该是chromedriver与chrome版本不匹配造成的。

解决方案

  1. 从浏览器中查看chrome的版本号
    [外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-D6VplHzW-1616388842829)(爬虫.assets/image-20210322123515853.png)]

  2. http://npm.taobao.org/mirrors/chromedriver上下载对应版本的驱动

  3. chromedriver.exe解压出来,可以将文件解压到python的安装目录,也可以解压到任意地方。

    • 当然程序中允许自定义chromedriver.exe的路径

      chrome_driver = r"G:\Anaconda3\Lib\site-packages\selenium\webdriver\chrome\chromedriver"
      driver = webdriver.Chrome(chrome_options=chrome_options, executable_path=chrome_driver)
      
      • 1
      • 2
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/不正经/article/detail/660816
推荐阅读
相关标签
  

闽ICP备14008679号