ui自动化会有好多流程是固定的
在每一个用例开始和结尾都有一些固定的流程这些固定的流程可以提取出来
这样对每一个用例,如果地址变了也好维护 ,不用每一个用例都去改
根据你项目的用例粒度去修改
如果你想在每个文件的函数内容方法前和结束后执行
def setup_function():
print('开始')
def teardown_function():
print('结束')
def test_01():
print(1)
def test_02():
print(2)
如果你想在文件前后执行
def setup_module():
print('开始')
def teardown_module():
print('结束')
def test_01():
print(1)
def test_02():
print(2)
还有类_class
等等很多这种方法不太好用
unitest框架常用这种方法去做固定流程的设计