摘要:
Selenium私房菜(新手入门教程) http://wenku.baidu.com/link?url=uEBayINsfTbMRzAscerTotmvdOVkJ_lLzhq0wSiafpDkQYXLbjc4m5poarBQl4fxrGTqeM67229DZOcXJ5ZQJq 阅读全文
摘要:
Selenum提供了多种策略进行网页中的元素定位,从而不用如urllib那样采用re正则表达式进行信息过滤。Selenium 提供一下API进行元素定位,你可以选用其中合适的方式来实现你的功能。 find_element_by_id find_element_by_name find_element_by_xpath find_element_by_link_tex... 阅读全文
摘要:
虽然我们通常使用Selenium来写测试脚本,但是Selenium本身不提供测试框架。在这里,我们可以结合Python自动化框架unittest库来进行web测试。当然你也可以使用其他测试框架或工具,如py.test和nose. 下面是结合百度搜索的一个测试函数: #coding:utf-8 import time import unittest from selenium impor... 阅读全文
摘要:
打开File –> Settings 选中Editor –> General –> Appearence Show line numbers 阅读全文