chromedriver安装和环境变量配置

chromedriver

1、安装

网上随便搜一篇chromedriver的安装文档即可。这里是一个快速链接
特别提醒:截止2024.1.30,chromedriver.exe已经更新到121.xx了,如果你在官网上没有找到和你google chrome版本一致的chromedriver.exe,建议先把本地的google chrome升级到最新版本,再去下载对应版本的chromedriver.exe。

2、【重点】环境变量配置

对解压包里的chromedrive.exe进行如下操作:

(1)包的复制:
  • 复制1 :复制任意一个需要管理员就可以访问的文件夹下!
    • 默认google 的安装目录在"C:\Program Files\Google\Chrome\Application",但C:\Program Files需要管理员权限,如果把chromedriver.exe放在该目录下,可能无法正常访问。我的最终路径:"D:\othersoft\google":
  • 复制2 :检查引用from selenium import webdriver的.py脚本所使用的python环境,把chromedrive.exe在当前python环境下也复制一份。
    • 比如.py使用的环境安装在"D\python3.10\xx", 则直接把chromedrive.exe复制到"D\python3.10"目录下即可。
(2)系统环境变量配置

复制1中chromedriver.exe的路径添加到系统环境PATH中。

3、验证

(1)第一种

chromedriver --version

(2)第二种

from selenium import webdriver
driver = webdriver.Chrome()

会启动一个chrome窗口,并马上关闭。

相关推荐
小白学大数据1 小时前
如何使用Selenium处理JavaScript动态加载的内容?
大数据·javascript·爬虫·selenium·测试工具
weixin_419349791 小时前
selenium 报错 invalid argument: invalid locator
selenium·测试工具
程序猿000001号1 小时前
Selenium 深度解析:自动化浏览器操作的利器
selenium·测试工具·自动化
大霞上仙1 天前
selenium 在已打开浏览器上继续调试
python·selenium·测试工具
小码哥说测试2 天前
Charles简单压力测试
自动化测试·软件测试·网络协议·selenium·接口测试·压力测试·postman
钱钱钱端2 天前
软件测试工程师面试整理 —— 编程与自动化!
自动化测试·软件测试·selenium·测试工具·面试·职场和发展
??? Meggie2 天前
【Python】 使用Selenium获取网页表格的方法(find_element的方法)
开发语言·python·selenium
我是Superman丶2 天前
【Python】使用Selenium 操作浏览器 自动化测试 记录
selenium·测试工具
是我知白哒2 天前
selenium模拟某网校带密码登陆
经验分享·selenium·测试工具
??? Meggie3 天前
【Python】Selenium模拟滚动鼠标,向下拖动下拉按钮,直至网页页面向下滑的方法
python·selenium·计算机外设