Python Chrome驱动程序和Chrome版本83

Python Chrome驱动程序和Chrome版本83,python,google-chrome,web-scraping,beautifulsoup,Python,Google Chrome,Web Scraping,Beautifulsoup,当我遇到以下错误时,我一直试图为谷歌搜集一些信息: SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 80 我有两个问题: 有没有可能有一个新版本的driver=webdriver.Chrome可以与这个新版本一起使用 和/或 有没有可能降级谷歌浏览器 这是我目前正在使用的模块: driver = webd

当我遇到以下错误时,我一直试图为谷歌搜集一些信息:

SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 80
我有两个问题:

  • 有没有可能有一个新版本的driver=webdriver.Chrome可以与这个新版本一起使用
和/或

  • 有没有可能降级谷歌浏览器
这是我目前正在使用的模块:

driver = webdriver.Chrome('path/chromedriver')
driver.get('https://www.google.com')

所以出现这个问题是因为chrome和ChromeDriver的版本不一致。 我建议的第一件事是检查你的chrome版本,方法是转到帮助->关于谷歌chrome并检查版本。假设是83,差不多

然后在这里下载具有相应版本的Chrome Webdriver,您应该可以开始了


希望这有帮助

之所以出现这个问题,是因为chrome和ChromeDriver的版本不一致。 我建议的第一件事是检查你的chrome版本,方法是转到帮助->关于谷歌chrome并检查版本。假设是83,差不多

然后在这里下载具有相应版本的Chrome Webdriver,您应该可以开始了

希望这有帮助