selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 103 Current browser version is 114.0.5735.90 with binary path C:\Users\adminjy\AppData\Local\Google\Chrome\Application\chrome.exe
时间: 2023-10-28 20:56:05 浏览: 145
这个错误提示表明你安装的ChromeDriver版本不支持你当前的Chrome浏览器版本。解决这个问题的方法是更新ChromeDriver到最新版本,以支持最新的Chrome浏览器。
你可以按以下步骤更新ChromeDriver:
1. 打开Chrome浏览器,查看你的Chrome浏览器版本号,方法是在地址栏输入chrome://settings/help,然后查看“Chrome浏览器版本”字段。
2. 下载与你的Chrome浏览器版本匹配的ChromeDriver。你可以在ChromeDriver的官方网站(https://sites.google.com/a/chromium.org/chromedriver/downloads)上找到可用的ChromeDriver版本。
3. 将下载的ChromeDriver文件解压缩到一个目录中,并将该目录添加到你的系统环境变量中。
4. 在Python代码中指定ChromeDriver的路径,例如:
```python
from selenium import webdriver
chrome_driver_path = "path/to/chromedriver"
browser = webdriver.Chrome(chrome_driver_path)
```
当你运行代码时,Selenium会使用指定路径下的ChromeDriver来控制Chrome浏览器。
注意,更新ChromeDriver时需要与你的Chrome浏览器版本匹配。如果你的Chrome浏览器版本更新了,你需要重新下载和安装匹配的ChromeDriver版本。
阅读全文