当前位置:   article > 正文

一键解决selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This versio_selenium-java 出现 session 异常

selenium-java 出现 session 异常

一键解决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')
  • 1
  • 2
  • 3
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/660739
推荐阅读
相关标签
  

闽ICP备14008679号