seleniu+python+chrome的调试
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安装成功
posted on 2013-09-26 15:22 ningruolily 阅读(872) 评论(0) 编辑 收藏 举报