selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)

目录


欢迎关注 『Python』 系列,持续更新中
欢迎关注 『Python』 系列,持续更新中

1.报错分析

selenium.common.exceptions.SessionNotCreatedException: Message: session not created: This version of ChromeDriver only supports Chrome version 92
Current browser version is 97.0.4692.71 with binary path C:\Users\ASUS\AppData\Local\Google\Chrome\Application\chrome.exe
  • SessionNotCreatedException:消息:会话未创建:此版本的ChromeDriver仅支持Chrome版本92
  • 你的电脑默认Chrome浏览器路径是C:\Users\ASUS\AppData\Local\Google\Chrome\Application\chrome.exe
  • 出现这种情况说明你的Chrome浏览器升级了和你的ChromeDriver不兼容

2. 下载适配浏览器版本的ChromeDriver驱动

根据前面报错信息提示的浏览器路径C:\Users\ASUS\AppData\Local\Google\Chrome\Application\chrome.exe找到浏览器,右键属性,再查看得到详细信息中的浏览器版本97.0.4692.71
selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)
依据得到的版本到官方下载网站下载驱动,浏览器ctrl+f搜索

https://npm.taobao.org/mirrors/chromedriver/

selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)
selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)


3. 测试是否成功

简单测试用selenium打开博客

# @Time    : 2022/1/15 16:32
# @Author  : 南黎
# @FileName: 测试能否使用selenium.py

from selenium import webdriver

driver = webdriver.Chrome()

driver.maximize_window()

driver.get("https://blog.csdn.net/u011027547")

selenium.common.exceptions.SessionNotCreatedException: Message: session not created:(保姆级图文解决问题步骤)
更有趣的测试——
【Python黑科技】免登陆爬取知乎图片(保姆级图文+实现代码)


总结

大家喜欢的话,给个

上一篇:Python+selenium运行出错‘Application‘ executable may have wrong permissions.


下一篇:爬虫之selenium配置基于Chrome浏览器