一、检查浏览器版本
浏览器地址栏输入: chrome://version

二、下载地址
https://googlechromelabs.github.io/chrome-for-testing/#stable
https://storage.googleapis.com/chrome-for-testing-public/142.0.7444.175/win64/chromedriver-win64.zip且将其版本改为自己电脑的chrome的版本来下载:(修改 142.0.7444.175-->142.0.7444.176)
三、使用python加载
python
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
service = Service(executable_path=r'D:\Downloads\\chromedriver-win64\chromedriver.exe')
browser = webdriver.Chrome(service=service)