5 使用selenium调用google chrome小例子

安装了python27、eclipse等以及第三方selenium,我们现在写个简单的python使用selenium调用google chrome小例子来测试一下。

1 下载 chrome64位驱动 链接:http://pan.baidu.com/s/1dEVo7Jz 密码:5y91

2 eclipse中新建python project -->python package-->python module 层次包含关系,代码如下

-- coding:utf-8 --

import os

from selenium import webdriver

chromedriver_x64.exe的路径

chromedriver = "C:\chromedriver_x64.exe"

os.environ["webdriver.chrome.driver"] = chromedriver

options = webdriver.ChromeOptions()

options.add_experimental_option("excludeSwitches",["ignore-certificate-errors"])

driver = webdriver.Chrome(chromedriver,chrome_options=options)

driver.get("http://www.baidu.com")

print driver.title

driver.close()

抱歉 , 没有使用代码框,上面代码可能有些杂乱,但是运行没问题,如果采用动态采集,可以简单参考,具体逻辑有探讨的可以私信我。静态采集现在网站限制比较多,以后文章会介绍,而且用python3会方便很多

你可能感兴趣的:(5 使用selenium调用google chrome小例子)