其他分享
首页 > 其他分享> > 8.移动端自动化测试-

8.移动端自动化测试-

作者:互联网

总结:

1.安装 pip3 install pytest
2.初始化和结束函数:
      1.setup teardown : 在一个类内部每个测试方法的开始和结束运行一次
       2.setup_class,teardown_class:在一个类内部只运行一次,不关心有多少测试方法

3.pytest插件
      1.pytest-html: 生成测试报告
      安装:pip3 install pytest-html
           使用:跟在命令行里,pytest 测试文件 —html=路径/xx.html
2.pytest-ordering: 控制测试函数运行顺序
       使用:@pytest.mark.run(order=x)
x:
1.全为正数 或者 全为负数 值越小 优先级越高,意味着最先执行
2.正数和负数同时存在,正数优先级高
3.值为负数时,优先级低于没被标记的测试方法
4.值为正数时,优先级高于没被标记的测试方法
3.pytest-rerunfailures : 失败测试函数重试机制

     使用:在命令行参数中配置:—reruns n
      n:重试次数
4.配置文件:
    1.命令行参数 addopts = -s —reruns n —html=路径/xx.html # 命令之间空格分隔
    2.搜索路径:testpaths = 脚本存放的路径
    3.搜索文件名:python_files = test_*.py
    4.搜索测试类名:python_classes = Test_*
     5.搜索方法名:python_functions = test_*

 

 一、

 

标签:正数,优先级,python,pytest,html,测试,自动化,移动,测试方法
来源: https://www.cnblogs.com/yinlili/p/16537608.html