chromedriver
版本不匹配
- 报错:
selenium.common.exceptions.SessionNotCreatedException: Message: session not created
selenium.common.exceptions.WebDriverException: Message: session not created:
- 原因:
Chrome版本和ChromeDriver
版本不一致,极有可能是Chrome浏览器自动升级了新版本,导致两者版本差异,运行不了。 - 解决方案:
-
查看Chrome浏览器的版本
-
在浏览器上方地址栏输入:
chrome://version/
-
显示如下:
-
下载对应版本的驱动
chromedriver
下载地址:
http://chromedriver.storage.googleapis.com/index.html
-
下拉网页找到对应版本,下载后解压
-
-
将解压后的
chromedriver.exe
放在对应位置如下:- 谷歌路径:
C:\Program Files (x86)\Google\Chrome\Application
或者C:\Program Files\Google\Chrome\Application
*
python
运行目录
-
一种直接的方法是在命令行输入:
where chromedriver
(命令行打开方式:windows+R
,打开后键入cmd
,回车) -
根据目录将
chromedriver.exe
复制进去
* -
为了保险最好打开应用程序的包目录:例如
E:\workplace\pycharm_workplace\conda\venv\Lib\site-packages\selenium\webdriver\chrome
复制该exe文件进去(非必要)
- 谷歌路径: