一键解决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位置。文章来源:https://www.toymoban.com/news/detail-819481.html
最后,你需要在你的Python代码中指定ChromeDriver的路径。你可以使用以下代码来指定ChromeDriver的路径:文章来源地址https://www.toymoban.com/news/detail-819481.html
from selenium import webdriver
driver = webdriver.Chrome('/path/to/chromedriver')
到了这里,关于成功解决selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This versio的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!