如何下载selenium及其适配谷歌浏览器插件chromedriver(含chrome各版本及下载地址
时间: 2023-12-02 19:00:47 浏览: 181
chromedriver_linux64_93.0.4577.63.zip
在下载Selenium以及适配谷歌浏览器插件Chromedriver之前,我们首先需要确定我们要下载的Selenium版本和Chrome浏览器的版本。以下是一些常见的Chrome浏览器版本及其对应的Chromedriver下载地址:
- Chrome v76-78:https://chromedriver.storage.googleapis.com/index.html?path=76.0.3809.68/
- Chrome v74-76:https://chromedriver.storage.googleapis.com/index.html?path=74.0.3729.6/
- Chrome v71-73:https://chromedriver.storage.googleapis.com/index.html?path=71.0.3578.137/
- Chrome v69-71:https://chromedriver.storage.googleapis.com/index.html?path=69.0.3497.68/
- Chrome v66-68:https://chromedriver.storage.googleapis.com/index.html?path=2.41/
- Chrome v64-66:https://chromedriver.storage.googleapis.com/index.html?path=2.38/
- Chrome v62-64:https://chromedriver.storage.googleapis.com/index.html?path=2.35/
- Chrome v61-63:https://chromedriver.storage.googleapis.com/index.html?path=2.34/
为了下载Selenium,您可以使用以下命令行指令:
```shell
pip install selenium
```
这将会使用pip安装最新的Selenium版本。
下面是一个使用Selenium和Chromedriver的Python示例代码:
```python
from selenium import webdriver
driver = webdriver.Chrome('path_to_chromedriver')
driver.get('https://www.example.com')
```
在这个代码示例中,'path_to_chromedriver'应该是您下载的Chromedriver的完整文件系统路径。
请注意,要想成功运行Selenium和Chromedriver,必须确保Chromedriver的版本与您的Chrome浏览器版本兼容。如果版本不匹配,您可能会遇到错误。
希望上述内容对您有所帮助!
阅读全文