Pytest框架介绍(2)

6.pytest框架结构

import pytest类似的setup,teardown同样更灵活

  • 模块级(setup_module/teardown_module)模块始末,全局的(优先级最高)
  • 函数级(setup_function/teardown_function)只对函数用例生效(不在类中)
  • 类级(setup_class/teardown_class)只在类中前后运行一次(在类中)
  • 方法级(setup_method/teardown_method)开始与方法始末(在类中)
  • 类里面的(setup/teardown)运行在调用方法的前后

7.前端自动化中应用

猜你喜欢

转载自www.cnblogs.com/zhaikunkun/p/12584391.html