selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of
一、问题原因
报这个错是因为 当前浏览器的版本与 chromedriver.exe的版本不一致。
这个时候你需要先知道自己当前浏览器的版本
二、 找到对应的chromedriver
正常的话,应该去这个里面去找:https://chromedriver.storage.googleapis.com/index.html,可是现在这里面列出来最新版本的Chromedriver只对应到了 Chrome 114,虽然能用到115上,但是会有警告
这个是115.0.5790.102版本的chromedriver
https://edgedl.me.gvt1.com/edgedl/chrome/chrome-for-testing/115.0.5790.102/win32/chromedriver-win32.zip
这个网址里面对应了最新版本的Chrome 116及以后,有需要的可以去看下https://googlechromelabs.github.io/chrome-for-testing/#stable
三. 安装ChromeDriver
其实不叫安装,就把刚刚下载的压缩包chromedriver-win32.zip解压存放在任意一个文件夹,
我是放在python文件夹
解压把 chromedriver.exe 放到python37 文件夹下
然后把这个文件夹地址添加到环境变量Path里即可,注意,直接复制路径后,要在最后面再加一个\,不然还是找不到这个chromedriver
然后win+r,输入cmd,再输入chromedriver验证成功。
在pycharm运行一下下面的代码
from selenium import webdriver
from time import sleep
driver = webdriver.Chrome()
driver.get('https://www.baidu.com')
sleep(2)
# driver. Quit()
部分文章内容参考安装chromedriver 115,对应chrome版本115(经检验,116也可以使用)_孟孟单单的博客-CSDN博客