配置chromedriver
时间: 2023-11-06 19:05:21 浏览: 89
配置chromedriver需要以下步骤:
1. 下载对应版本的chromedriver,下载地址为:https://sites.google.com/a/chromium.org/chromedriver/downloads
2. 将下载的chromedriver解压缩到一个目录中,例如:C:\Program Files (x86)\Google\ChromeDriver
3. 将该目录添加到系统环境变量中的Path中
4. 在Python代码中使用selenium库时,指定chromedriver的路径即可,例如:
```python
from selenium import webdriver
driver = webdriver.Chrome('C:\Program Files (x86)\Google\ChromeDriver\chromedriver.exe')
```
相关问题
selenium配置chromedriver
Selenium配置ChromeDriver的步骤如下:
1. 下载ChromeDriver:从官网下载对应版本的ChromeDriver,下载地址为:https://sites.google.com/a/chromium.org/chromedriver/downloads
2. 将ChromeDriver放置在系统PATH路径下:将下载好的ChromeDriver解压后,将其放置在系统PATH路径下,以便Selenium可以找到它。
3. 配置Selenium:在代码中配置Selenium时,需要指定ChromeDriver的路径,例如:
```python
from selenium import webdriver
driver = webdriver.Chrome('/path/to/chromedriver')
```
其中,`/path/to/chromedriver`为ChromeDriver的路径。
4. 启动ChromeDriver:在代码中启动ChromeDriver时,需要指定ChromeDriver的路径,例如:
```python
from selenium import webdriver
driver = webdriver.Chrome('/path/to/chromedriver')
driver.get('https://www.google.com')
```
其中,`/path/to/chromedriver`为ChromeDriver的路径,`https://www.google.com`为要访问的网址。
以上就是Selenium配置ChromeDriver的步骤。
mac配置chromedriver
在Mac上配置chromedriver需要以下步骤:
1. 获取与谷歌浏览器相同版本的chromedriver,可以通过查看自己的谷歌浏览器版本号,然后在https://chromedriver.storage.googleapis.com/index.html下载相应版本的chromedriver。
2. 下载成功后解压压缩包,将chromedriver移动到/usr/local/bin目录下,可以通过终端命令sudo mv chromedriver /usr/local/bin实现。
3. 检查是否放置成功,可以在终端输入命令open /usr/local/bin,看到chromedriver即表示成功。
4. 解决MacOS无法打开“chromedriver”,因为无法验证开发者,可以在终端进入到放置chromedriver的文件夹,然后输入命令xattr -d com.apple.quarantine chromedriver,验证是否成功可以在终端输入chromedriver。
另外,如果访问Selenium官方网址下载chromedriver不方便,可以使用淘宝镜像https://npm.taobao.org/mirrors/chromedriver/下载对应Mac系统的安装包。
阅读全文