美文网首页我爱编程
5 使用selenium调用google chrome小例子

5 使用selenium调用google chrome小例子

作者: 寄居他乡 | 来源:发表于2016-12-04 21:16 被阅读0次

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

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

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

    <code>

    -- 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()

    </code>

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

    相关文章

      网友评论

        本文标题:5 使用selenium调用google chrome小例子

        本文链接:https://www.haomeiwen.com/subject/blzhmttx.html