- Chrome 96.x 至 98.x 版本 与selenium的版本对应可以去这个网址下载https://chromedriver.storage.googleapis.com/index.html
- Chrome 114 及之后版本 :可以访问专门维护的一个 JSON 文件来获取最新的已知良好组合列表。这个文件包含了多个平台上的二进制文件链接以及详细的版本信息,方便开发者快速找到适合自己环境的最佳搭配方案,下载地址https://googlechromelabs.github.io/chrome-for-testing/known-good-versions-with-downloads.json
- 我的是mac电脑,我的chrome版本为:134.0.6998.166(正式版本) (x86_64)
- 第一,打开上面的链接如下图
第二,我的位mac英特尔芯片的复制对应的URL,用浏览器打开直接下载,下载之后如下图

第三,进入到chromedriver-mac-x64目录如下图

第四:打开终端执行 cp chromedriver /usr/local/bin 如下图

测试脚本
python
import time
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
# 指定chromedriver的路径
service = Service(executable_path='/usr/local/bin/chromedriver')
# 使用Service对象初始化Chrome driver
driver = webdriver.Chrome(service=service)
driver.get("https://www.baidu.com/")
time.sleep(30)