当前位置: 首页 > 知识库问答 >
问题:

Selenium错误:此版本的ChromeDriver仅支持Chrome版本81

申屠黎昕
2023-03-14

我得到了一个错误时,打开铬与硒,它打开和关闭窗口后立即打开。下面是我的代码

import requests
import json
from selenium import webdriver
driver = webdriver.Chrome(executable_path=r'C:\Users\Salvatore\Desktop\Desktop\webdrivers\chromedriver.exe')```

This is the error:
```selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 81```

共有1个答案

周洋
2023-03-14

请检查您使用的是哪个chrome浏览器,您应该根据chrome浏览器版本使用chrome驱动程序exe(错误似乎您使用的是81版本的chrome驱动程序,但您的chrome浏览器版本不超过83,84)

https://chromedriver.chromium.org您可以在这里下载最新的chrome驱动程序版本

 类似资料: