因为不想用urllib2了,没有用过splinter,今天就想试试,毕竟后者支持的功能更人性化/自动化。 1,安装splinter 安装过程很简单,安装了pip的话,执行: 安装过程中需要的依赖库会自动下载,无须担心。 2,安装Chromedriver 因为我需要chrome支持页面测试,所以需要安 ...
分类:
编程语言 时间:
2016-10-11 21:32:39
阅读次数:
171
Splinter是什么: 是一个用 Python 编写的 Web 应用程序进行验收测试的工具。 Splinter执行的时候会自动打开你指定的浏览器,访问指定的URL,然后你所开发的模拟的任何行为,都会自动完成, 英文介绍: Splinter is an open source tool for te ...
分类:
编程语言 时间:
2016-07-11 16:48:54
阅读次数:
145
目前,qq邮箱的登录方式有: 1、利用账号、密码登录 2、快捷登录,前提是你本地已有qq账号登录中 和前面一样,还是先到qq邮箱登录首页,审查页面元素,找到我们进行登录操作所相关的链接、按钮或是输入框。 QQ邮箱登录首页:https://mail.qq.com/ 打开登录页,可以看到两种登录方式选择
分类:
其他好文 时间:
2016-02-02 16:27:50
阅读次数:
155
Splinter介绍Splinter is an open source tool for testing web applications using Python. It lets you automate browser actions, such as visiting URLs and i...
分类:
编程语言 时间:
2016-01-10 17:09:27
阅读次数:
212
有一段时间没有使用Python了,前几天经朋友提起一篇关于用Python实现抢火车票的文章,百度了实现抢火车票的技术细节,网上却有不少资料,也不是新鲜的东西。在了解了一些技术手段后,也尝试实现了一下,代码写得粗糙,纯当娱乐,本文在Windows系统下完成。...
分类:
编程语言 时间:
2015-12-29 21:18:15
阅读次数:
279
问题一:MAC 使用splinter errorTraceback (most recent call last): from splinter.browser import Browser b = Browser(driver_name="chrome") File "/Librar...
分类:
系统相关 时间:
2015-12-12 01:28:21
阅读次数:
334
前言:大家跟我一起念,Python大Fa好,跟着本宝宝用Python抢火车票!首先我们需要splinter安装:pipinstallsplinter-ihttp://pypi.douban.com/simple–trusted-hostpypi.douban.com然后还需要一个浏览器的驱动,当然用...
分类:
编程语言 时间:
2015-12-09 18:52:01
阅读次数:
287
Thereissthwrongwithinputonmyubuntu.Sothefirstblogwouldbewritteninenglishaboutwhatiamdoingduringthisweekend.istudypythonforawhileaboutalgorithandnetworkandnowfindsomesmallprojectforpractice.Oneofpraticeistologonwebsiteautomatically.Splinterisaninterestingite..
分类:
Web程序 时间:
2015-12-06 02:00:32
阅读次数:
354
前言:大家跟我一起念,Python大法好,跟着本宝宝用Python抢火车票首先我们需要splinter安装:pipinstallsplinter-ihttp://pypi.douban.com/simple--trusted-hostpypi.douban.com然后还需要一个浏览器的驱动,当然用chrome啦下载地址:http://chromedriver.storage.googleapis...
分类:
编程语言 时间:
2015-12-03 15:49:49
阅读次数:
3606
import randomimport splinterimport timeimport re#changePage用来生产不同页面的链接def changePage(url,pageNumber): now_page = int(re.search('thread-(\d+)-1-1',u...
分类:
其他好文 时间:
2015-11-10 23:47:32
阅读次数:
227