- 实现web UI自动化测试
- 嵌套locust集成性能测试
- 实现request接口测试
- 通过ssh访问数据库
- fastapi编写接口api自定义测试
Vantpy更新的内容:
- 兼容Linux系统,mac系统,跨系统使用,多人协作
- 删除绝对路径的读取,改为相对路径的读取
- 加入接口测试模块
- 集成Jenkins,测试报告采用Allure测试报告
- 添加随机生成器,使测试用例更灵活
- 对selenium二次开发添加新的操作
- 实现有界面与无界面之间的切换
- 把框架代码拉下来之后:
https://github.com/G2Bent/Vantpy.git
- 安装所依赖的第三方库:
pip install requirements.txt
- 直接运行run.py文件
Vantpy框架基于python3+selenium+unittest搭建的WebUI自动化测试框架
- 使用POM(页面对象模式)设计,使代码更加有逻辑性,测试脚本更加规范,后期更加容易维护以及复用性更高
- 支持多种定位方式,包括(xpath/css/ID/text/link_text/name)
- 框架集成了Selenium的常用定位方法,使元素定位更加方便
- 使用HTMLTestRunner作为自动生成测试报告,报告更加美观,更加详细,内容更丰富
- Logging日志输出,可以看到每一步做的操作
- Python 3.6+:https://www.python.org/
pip install requirements.txt
基于Selenium支持的所有浏览器
browser == "Chrome"
browser == "firefox"
browser == "IE"
browser == "phantomjs"
browser == "opera"
browser == "edge"
geckodriver(Firefox):https://github.com/mozilla/geckodriver/releases
Chromedriver(Chrome):https://sites.google.com/a/chromium.org/chromedriver/home
IEDriverServer(IE):http://selenium-release.storage.googleapis.com/index.html
operadriver(Opera):https://github.com/operasoftware/operachromiumdriver/releases
MicrosoftWebDriver(Edge):https://developer.microsoft.com/en-us/microsoft-edge/tools/webdriver
class BaiduPage(BasePage):
"""
在这里写定位器,通过元素属性定位元素对象
"""
search_loc =(By.XPATH,'//*[@id="kw"]')#定位百度文本框
def input_baidu_text(self,text):
self.send_key(self.search_loc,text)
2018-06-02 14:58:13,521 - INFO - You had select Chrome browser.
2018-06-02 14:58:13,524 - INFO - The test url is: https://www.baidu.com
2018-06-02 14:58:19,629 - INFO - Starting Chrome browser.
2018-06-02 14:58:20,456 - INFO - Open url: https://www.baidu.com
2018-06-02 14:58:21,607 - INFO - Maximize the current window.
2018-06-02 14:58:21,609 - INFO - Set implicitly wait 5 seconds.
2018-06-02 14:58:21,609 - INFO - Clear input-box: //*[@id="kw"]...
2018-06-02 14:58:22,723 - INFO - Input element by xpath: //*[@id="kw"]...
2018-06-02 14:58:22,723 - INFO - Input: selenium
def report():
if len(sys.argv) > 1:
report_name = os.path.dirname(os.getcwd()) + '\\report\\' + sys.argv[1] + '_result.html'
else:
now = time.strftime("%Y-%m-%d_%H_%M_%S_")
# 需要查看每段时间的测试报告,可以这样写:
# report_name = os.getcwd() + '\\report\\'+now+'result.html'
report_name = os.path.dirname(os.getcwd()) + '\\report\\result.html'
return report_name
fp = open(report(), 'wb')
Runner = HTMLTestRunner(
stream=fp,
title='测试报告',
description='测试用例执行情况'
)