赞
踩
一键解决selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This versio
selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This versio
下滑查看解决方法
这个错误提示表明你的ChromeDriver版本不支持你的Chrome浏览器版本。为了解决这个问题,你需要下载与你的Chrome浏览器版本相对应的ChromeDriver版本。
下滑查看解决方法
以下是详细的解决方法:
首先,你需要确定你的Chrome浏览器的版本号。在Chrome浏览器的地址栏中输入 chrome://version,然后查看浏览器版本号。
接下来,你需要下载与你的Chrome浏览器版本相对应的ChromeDriver版本。你可以从以下两个地址中的任意一个下载ChromeDriver:
https://registry.npmmirror.com/binary.html?path=chromedriver/
http://chromedriver.storage.googleapis.com/index.html
下载完ChromeDriver后,你需要将它放在一个你可以轻松访问的位置。你可以使用命令 where chromedriver 来查看你电脑上的ChromeDriver位置。
最后,你需要在你的Python代码中指定ChromeDriver的路径。你可以使用以下代码来指定ChromeDriver的路径:
from selenium import webdriver
driver = webdriver.Chrome('/path/to/chromedriver')
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。