您的位置:软件测试 > 开源软件测试 > 开源功能测试工具 > Selenium
在Selenium中使用Ghostdriver抓取页面
作者:网络转载 发布时间:[ 2016/6/28 11:38:50 ] 推荐标签:功能测试工具 Selenium

  缘起
  一位firefox抓取速度慢,想加速,发现通过无界面的浏览器取抓取可以快很多,因为不用进行浏览器页面渲染,这个可是非常耗费时间的。这个理由够了把。
  安装ghostdriver
  因为ghostdriver已经和phantomjs合二为一了,所以直接安装phantomjs(phantomis是一个基于webkit的无界面浏览器,浏览器能干的他大多能干,是不渲染出后的网页)
  直接下载phantomjs好,由于各个平台的安装模式差异较大,不多介绍了,百度一把好。
  linux or mac 备忘一句
#mac拥护请在地址下载,否则出错kill:9
#https://github.com/eugene1g/phantomjs/releases
#软链接phantomjs
ln -s /where/dir/phantomjs  /usr/local/bin/phantomjs
  python 测试
#coding=utf-8
from selenium import webdriver
import time
import os
br=webdriver.PhantomJS('phantomjs')
baseurl="http://quote.eastmoney.com/"
indexurl="stocklist.html"
gourl="%s%s"%(baseurl,indexurl)
br.get(gourl)
print br.title
time.sleep(5)
br.quit()
  phantomjs 截图
#coding=utf-8
from selenium import webdriver
import time
import os
br=webdriver.PhantomJS('phantomjs')
baseurl="http://quote.eastmoney.com/"
indexurl="stocklist.html"
gourl="%s%s"%(baseurl,indexurl)
br.get(gourl)
br.save_screenshot('./股票列表.png')
print "完成"
br.quit()

软件测试工具 | 联系我们 | 投诉建议 | 诚聘英才 | 申请使用列表 | 网站地图
沪ICP备07036474 2003-2017 版权所有 上海泽众软件科技有限公司 Shanghai ZeZhong Software Co.,Ltd