今天重新使用selenium,发现了几个问题
我的运行环境: Python(3.11.5) selenium (4.23.1)
第一:executable_path已经被弃用,现在要用service,像下面这样
from selenium import webdriver
from selenium.webdriver.chrome.service import Service
import time
chromedriver_path = chromedriver.exe的位置
service = Service(chromedriver_path)
driver = webdriver.Chrome(service=service)
driver.get("http://www.baidu.com")
time.sleep(3)
driver.quit()
第二:chromedriver 的版本问题
谷歌浏览器会自动更新,所以之前下载的 chromedriver 与浏览器已经不匹配。
从下面的网址重新下载chromedriver,里面有Chrome 115 或更高版本的下载指引:
下载Chrome驱动网页https://chromedriver.chromium.org/downloads
注意:chromedriver的下载路径没有什么要求,不过最好和代码放在一个文件夹下。