seleniu+python+chrome的调试

时间:2022-01-26 09:22:55

1、下载chrome,下载chrome driver,下载地址:http://code.google.com/p/chromedriver/downloads/list

2、安装chrome,默认路径:C:\Program Files\Google\Chrome\Application

3、将下载好的chrome driver放到C:\Program Files\Google\Chrome\Application目录下

4、设置系统环境变量,在path目录中增加路径:C:\Program Files\Google\Chrome\Application

新建python脚本:

from selenium import webdriver
driver =webdriver.Chrome()
driver.get('http://zhidao.baidu.com')
print driver.title
driver.quit()

运行成功,过程无报错,则seleniu+python+chrome安装成功