分析原因是:chrome浏览器和chromedriver的版本不匹配!如果以前用的好好的,突然这样了,应该是电脑的浏览器自动更新了,导致版本不匹配。
解决方法:
1、查看当前chrome浏览器的版本,然后下载对应版本的chromedriver。chromedriver下载地址:http://chromedriver.storage.googleapis.com/index.html
2、配置chromedriver的环境变量。我一般不配配置,运行Python时传入路径即可。比如我把chromedriver.exe文件放到“F:\pythonwenjian\chromedriver.exe”中,Python初始化浏览器时传入路径:
driver_path = r"F:\pythonwenjian\chromedriver.exe"
driver = webdriver.Chrome(executable_path=driver_path)
3、最终验证效果,不会出现闪退的情况了。
最终打开浏览器的代码如下:
=============以下是代码===================
from selenium import webdriver
import time # 设置你自己的chormedriver存放路径 driver_path = r"F:\pythonwenjian\chromedriver.exe" driver = webdriver.Chrome(executable_path=driver_path) driver.get("https://www.baidu.com") time.sleep(5) driver.close()
===============以上是代码============================