解决Chrome与chromedriver版本不一致的问题

Posted 林国森

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了解决Chrome与chromedriver版本不一致的问题相关的知识,希望对你有一定的参考价值。

今天使用selenium时遇到如下异常信息:

driver.get(\'https://www.baidu.com\')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "D:\\python3.7.3-install-path\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py", line 333, in get
self.execute(Command.GET, {\'url\': url})
File "D:\\python3.7.3-install-path\\lib\\site-packages\\selenium\\webdriver\\remote\\webdriver.py", line 321, in execute
self.error_handler.check_response(response)
File "D:\\python3.7.3-install-path\\lib\\site-packages\\selenium\\webdriver\\remote\\errorhandler.py", line 242, in check_response
raise exception_class(message, screen, stacktrace)
selenium.common.exceptions.WebDriverException: Message: unknown error: Runtime.executionContextCreated has invalid \'context\': {"auxData":{"frameId":"1902135EC45F5C7A8A0CD69740B466CA","isDefault":true,"type":"default"},"id":1,"name":"","origin":"://"}
(Session info: chrome=70.0.3538.102)
(Driver info: chromedriver=2.6.233026,platform=Windows NT 6.3 x86_64)

 

其原因就是Chrome与chromedriver版本不一致,解决方案:

异常信息中指出我chrome的版本是70.0.3538.102,而chromedriver版本是2.6.233026,明显版本不对应:

所以就需要去以下网址下载对应版本的chromedriver:

 http://npm.taobao.org/mirrors/chromedriver/

找到对应版本的chromedriver下载并放在对应python版本的Scripts文件夹下:

 

 

然后就可以正常驱动打开网页了:

 

如有错误,欢迎指正!

 

以上是关于解决Chrome与chromedriver版本不一致的问题的主要内容,如果未能解决你的问题,请参考以下文章

Python爬虫教程-27-Selenium Chrome版本与chromedriver兼容版本对照表

会话未创建:此版本的 ChromeDriver 仅支持 Chrome 版本 74 错误与 ChromeDriver Chrome 使用 Selenium

ChromeDriver与Chrome版本对应关系

ChromeDriver与Chrome版本对应关系

selenium:chromedriver与chrome版本的对应关系

chromedriver与chrome各版本及下载地址