时间:2021-05-22
本系列教程使用的python版本是3.6.3。
背景
这一节我们实现一个简单的ui测试工具。
该工具的作用是访问某个页面,然后根据css选择器去定位页面上的元素,最后判断页面上元素的个数与我们的预期是否相符。
举一个具体的例子,比如我们去访问www.itest.info这个页面,我们需要判断页面上class = thumbnail-img的元素存在,并且有4个。因为每一个元素代表一门课程,所以这个断言的意思是重定向科技主页上应该有4门主要课程。
视频讲解在这里。
工具设计
我们设计一个命令行工具,给工具传3个参数。
所以工具大概是这样用的: python script_name.py url css_selector length
代码实现
简单起见,我们会用到requests-html库。安装文档在这里。
from requests_html import HTMLSessionfrom sys import argvDEBUG = TrueUSAGE = '''USAGE:python html_assertion.py www.itest.info .thumbnail-img 4'''if len(argv) != 4: print(USAGE) exit(1)script_name, url, css_selector, length = argvif url[:4] != 'http': url = 'http://' + urlsession = HTMLSession()r = session.get(url)elements = r.html.find(css_selector)def debug(): if DEBUG: print('*' * 100) print(f"css选择器: {css_selector}, 共找到{len(elements)}个元素\n") for element in elements: print(element.html) print(element.attrs) print()if len(elements) != int(length): print(f"失败! 预期{length}个元素,实际存在{len(elements)}个元素\n") debug() exit(1)else: print(f"成功!\n") debug()精讲
用例失败之后使用exit(1)表示异常退出,这样在使用jenkins运行的时候,用例失败jenkins的job结果也会相应失败
requests-html库的基本使用参考这里
运行示例
# 失败情况python html_assertion.py www.itest.info .thumbnail-img 1失败! 预期1个元素,实际存在4个元素****************************************************************************************************css选择器: .thumbnail-img, 共找到4个元素<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/7/mission_impossible_cut.jpg"/></div><a class="btn-more hover-effect" href="/courses/7" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/6/120606ineam4nspdc6qdaw.jpg"/></div><a class="btn-more hover-effect" href="/courses/6" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/3/12.jpg"/></div><a class="btn-more hover-effect" href="/courses/3" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/2/13.jpg"/></div><a class="btn-more hover-effect" href="/courses/2" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}# 成功情况python html_assertion.py www.itest.info .thumbnail-img 4成功!****************************************************************************************************css选择器: .thumbnail-img, 共找到4个元素<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/7/mission_impossible_cut.jpg"/></div><a class="btn-more hover-effect" href="/courses/7" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/6/120606ineam4nspdc6qdaw.jpg"/></div><a class="btn-more hover-effect" href="/courses/6" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/3/12.jpg"/></div><a class="btn-more hover-effect" href="/courses/3" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}<div class="thumbnail-img"><div class="overflow-hidden"><img class="img-responsive" src="/uploads/course/image/2/13.jpg"/></div><a class="btn-more hover-effect" href="/courses/2" rel="external nofollow" rel="external nofollow" >更多</a></div>{'class': ('thumbnail-img',)}动手时间
扩展阅读
https://developer.mozilla.org/en-US/docs/Web/CSS/CSS_Selectors
源码地址
github地址
以上就是python实现测试工具(二)——简单的ui测试工具的详细内容,更多关于python ui测试的资料请关注其它相关文章!
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
谈到自动化测试,一般就会提到测试工具。许多人觉得使用了一、两个测试工具就是实现了测试自动化,这种理解是不对的,至少是片面的。的确,测试工具的使用是自动化测试的一
1、需要模块以及测试工具模块名:pyserial使用命令下载:python-mpipinstallpyserial串口调试工具:sscom5.13.1.exe2
gevent是python的协程模块,协程可以理解成更轻量化的线程。因为性能测试工具的一些限制,就自己萌发了自己写性能测试工具的念想,当然,写的比较简单,比如缺
一.代码使用Python+Splinter开发,Splinter是一个使用Python开发的开源Web应用测试工具,它可以帮你实现自动浏览站点和与其进行交互。二
本系列教程我们将使用python实现一些简单的测试工具,为了尽可能的简单,我们的工具以命令行工具为主。本系列教程使用的python版本是3.6.3。背景这一节我