码迷,mamicode.com
首页 > Web开发 > 详细

selenium+PhantomJS简单爬虫

时间:2017-10-19 14:02:44      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:cto   ppc   ==   timeout   .exe   imp   ble   .com   int   

#!/usr/bin/env python
# -*- coding: utf-8 -*-
‘‘‘
Created on 2017年10月19日
@author: zzy
‘‘‘
import time
from selenium import webdriver
from selenium.common import exceptions

#注意:Python文件名或者包名不要命名为selenium,会导致无法导入

def main():
    #browser = webdriver.Ie(executable_path=‘C:\geckodriver\geckodriver.exe‘)
    browser = webdriver.PhantomJS(executable_path=C:\geckodriver\phantomjs.exe)
    try:
        browser.get(rhttps://qian.qq.com/index.shtml?stat_data=oum62ppcsy004&ADTAG=SCQD.PINZ.PC.CZZ1)
        #time.sleep(5)
        html = browser.find_element_by_css_selector(.banner).get_attribute(innerHTML)
        print(html)
    except exceptions.TimeoutException as ex:
        print(ex)

if __name__ == __main__:
    main()

 版本说明:

py3.6

selenium3.6

geckodriver-v0.19.0-win64

phantomjs-2.1.1-windows

selenium+PhantomJS简单爬虫

标签:cto   ppc   ==   timeout   .exe   imp   ble   .com   int   

原文地址:http://www.cnblogs.com/OnlyDreams/p/7691910.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!