Git Product home page Git Product logo

mbt_cx's Introduction

MBT_CX

MBT (Model-based testing) 基于模型测试

概念:

属于一种测试方法:利用模型自动产生测试用例/测试套件,然后执行测试。

以百度搜索为例:

  1. 制作模型图(建模方法请查看 graphwalker 建模规则 http://graphwalker.github.io/yed_model_syntax/ ),然后将模型图文件放入 model 文件夹下:

  1. 在 MBT 目录下执行 python3 run_model.py -t model/example.graphml 检查模型图是否正确,确认没有报错或者死循环; 然后执行 python3 run_model.py -f model/example.graphml,会在 page_script 目录下生成一个 example_web.py(模型图文件名_测试平台.py)的文件

  2. 打开上一步生成的 py 文件,按 selenium 规则完成脚本:

  1. 脚本完成后,在 MBT 目录下执行 pytest 开始测试,测试效果:

执行测试前可以先打开 test_main.py 文件进行一些简单的设置,例如设置运行浏览器、测试的执行速度、测试文件较多时,可以在 test_main 中选择跳过一些测试等

  1. 测试完成后,在 report 目录下会生成测试报告,打开 report.html 即可查看本次测试结果。

运行环境:

1. yEd 下载(非必须):

查看和编辑模型图的软件,模型图文件全部在 model 文件夹下,后缀为 .graphml 的文件 下载地址: https://www.yworks.com/downloads - yEd 也可以在线使用:https://www.yworks.com/yed-live/

2. 安装并配置 Java 环境(必须):

安装并配置 Java 环境,推荐 Java8

3. python3(必须):

安装并配置 Python3 环境

4. jq(必须):

命令行 json 处理工具,对 graphwalker 生成的测试用例进行筛选,安装方法:brew install jq(需要先安装 brew)。其它安装方法请查看官方文档:https://stedolan.github.io/jq/

5. selenium环境(web 端测试必须,Android、 iOS 非必须):

selenium:浏览器自动测试工具,安装 Python3后在终端输入 pip3 install selenium 即可安装

6. chromedriver(web 端测试 Chrome 浏览器必须):

  1. 下载 https://sites.google.com/a/chromium.org/chromedriver/downloads
  2. 将解压的 chromedriver 移动到/usr/local/bin目录下

7. Appium环境(Android、iOS 端测试必须):

内容比较多,Android 和 iOS 不同,具体请查看 Appium 官方文档安装:
http://appium.io/docs/en/about-appium/getting-started/

8. 在 MBT 目录下执行 pip3 install -r requirements.txt 安装所需 python 库

使用

Web 端:

  1. 修改test_main.py 中的内容,调整一些测试参数和选择要测试的内容等(不需要执行的测试取消 @pytest.mark.skip("nothing") 的注释即可)
  2. 在MBT文件夹下执行:pytest 开始测试
  3. 测试完成后在 report 文件夹下会生成本次的测试报告

Android、iOS 端:

  1. 连接 Android、iOS 设备或模拟器,Android 准备好测试 apk 放入 application 文件夹,iOS 安装好测试软件
  2. 启动 Appium 服务
  3. 修改 test_main.py 中的内容,调整一些测试参数和选择要测试的内容( Android 将测试 apk 放入 application 文件夹下,并将 test_main.py 中的 app 修改为 apk 的名字)
  4. 在MBT文件夹下执行:pytest 开始测试
  5. 测试完成后在 report 文件夹下会生成本次的测试报告

其它

  1. 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

  1. @pytest.mark.skip("nothing") 会跳过该测试,测试中注释掉即可

mbt_cx's People

Contributors

cxingl avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.