pytest fixture 常用参数

fixture 常用的参数

参数一:autouse,作用:自动运行,无需调用

举例一:我们在类中定义一个function 范围的fixture; 设置它自动执行autouse=True,那么我们看下它执行结果

pytest fixture 常用参数_第1张图片

 输出:

pytest fixture 常用参数_第2张图片

 说明:因为设置了自动执行,且范围是方法级别,那么每次在方法或函数前后都会执行fixture;yield 之前的代码在方法之前执行,yield 之后的代码在方法执行之后执行

举例二:我们在类中定义一个class 范围的fixture; 设置它自动执行autouse=True,那么我们看下它执行结果

pytest fixture 常用参数_第3张图片

  输出:

pytest fixture 常用参数_第4张图片

 说明:因为设置了自动执行,且范围是类级别,那么每次在类的前后都会执行fixture;yield 之前的代码在方法之前执行,yield 之后的代码在方法执行之后执行

参数二:name,别名,一旦起了别名,那么fixture 本身的名字就不能使用了。

举例一:我们设置auto_login 的别名为:login

pytest fixture 常用参数_第5张图片

   输出:

pytest fixture 常用参数_第6张图片

说明:auto_login 别名是login,那么调用时候只需要写login 就好,如果写auto_login 会报错

pytest fixture 常用参数_第7张图片

举例二:我们在usefixtures 中也是使用别名

 

pytest fixture 常用参数_第8张图片

 输出:

pytest fixture 常用参数_第9张图片

参数三:params,作用:可以传递一个可迭代对象,然后使用内置request接收参数, request为函数对象,使用request.param接收参数

举例一:

pytest fixture 常用参数_第10张图片

 输出:

pytest fixture 常用参数_第11张图片

pytest fixture 常用参数_第12张图片

 

 

你可能感兴趣的:(接口自动化测试,pytest,自动化,python,自动化测试,接口测试,测试工具)