MBT (Model-based testing) 基于模型测试
属于一种测试方法:利用模型自动产生测试用例/测试套件,然后执行测试。
- 制作模型图(建模方法请查看 graphwalker 建模规则 http://graphwalker.github.io/yed_model_syntax/ ),然后将模型图文件放入 model 文件夹下:
-
在 MBT 目录下执行
python3 run_model.py -t model/example.graphml
检查模型图是否正确,确认没有报错或者死循环; 然后执行python3 run_model.py -f model/example.graphml
,会在 page_script 目录下生成一个 example_web.py(模型图文件名_测试平台.py)的文件 -
打开上一步生成的 py 文件,按 selenium 规则完成脚本:
- 脚本完成后,在 MBT 目录下执行
pytest
开始测试,测试效果:
执行测试前可以先打开 test_main.py 文件进行一些简单的设置,例如设置运行浏览器、测试的执行速度、测试文件较多时,可以在 test_main 中选择跳过一些测试等
- 测试完成后,在 report 目录下会生成测试报告,打开 report.html 即可查看本次测试结果。
查看和编辑模型图的软件,模型图文件全部在 model 文件夹下,后缀为 .graphml 的文件 下载地址: https://www.yworks.com/downloads - yEd 也可以在线使用:https://www.yworks.com/yed-live/
安装并配置 Java 环境,推荐 Java8
安装并配置 Python3 环境
命令行 json 处理工具,对 graphwalker 生成的测试用例进行筛选,安装方法:brew install jq
(需要先安装 brew)。其它安装方法请查看官方文档:https://stedolan.github.io/jq/
selenium:浏览器自动测试工具,安装 Python3后在终端输入 pip3 install selenium
即可安装
- 下载 https://sites.google.com/a/chromium.org/chromedriver/downloads
- 将解压的 chromedriver 移动到/usr/local/bin目录下
内容比较多,Android 和 iOS 不同,具体请查看 Appium 官方文档安装:
http://appium.io/docs/en/about-appium/getting-started/
- 修改test_main.py 中的内容,调整一些测试参数和选择要测试的内容等(不需要执行的测试取消 @pytest.mark.skip("nothing") 的注释即可)
- 在MBT文件夹下执行:pytest 开始测试
- 测试完成后在 report 文件夹下会生成本次的测试报告
- 连接 Android、iOS 设备或模拟器,Android 准备好测试 apk 放入 application 文件夹,iOS 安装好测试软件
- 启动 Appium 服务
- 修改 test_main.py 中的内容,调整一些测试参数和选择要测试的内容( Android 将测试 apk 放入 application 文件夹下,并将 test_main.py 中的 app 修改为 apk 的名字)
- 在MBT文件夹下执行:pytest 开始测试
- 测试完成后在 report 文件夹下会生成本次的测试报告
- iOS 使用中如果出现报错类似:
E selenium.common.exceptions.WebDriverException: Message: An unknown server-side error occurred while processing the command. Original error: Error Domain=com.facebook.WebDriverAgent Code=1 "The element '"Cancel" Button' is not visible on the screen and thus is not interactable" UserInfo={NSLocalizedDescription=The element '"Cancel" Button' is not visible on the screen and thus is not interactable}
应该是 appium 的 bug,解决办法:尝试升级 Appium 或者 iOS 版本,具体见: facebookarchive/WebDriverAgent#914
- @pytest.mark.skip("nothing") 会跳过该测试,测试中注释掉即可