下载ChromeDriver104
时间: 2023-11-25 11:52:40 浏览: 122
google浏览器chromedriver驱动下载【chrome版本:104.0.5112.79】
以下是下载ChromeDriver104的步骤:
1. 首先需要确定自己的Chrome浏览器版本,可以在浏览器地址栏输入chrome://version/查看。
2. 根据自己的Chrome浏览器版本,在http://chromedriver.storage.googleapis.com/index.html中找到对应版本的ChromeDriver下载链接。
3. 下载对应版本的ChromeDriver,并解压缩到指定目录。
4. 在Python代码中使用selenium库时,需要指定ChromeDriver的路径,例如:
```python
from selenium import webdriver
driver = webdriver.Chrome('C:/path/to/chromedriver.exe')
```
阅读全文