Pytest之parametrize()实现数据驱动

一、Pytest之parametrize()实现数据驱动

方法:

@pytest.mark-parametrize(argsname,args_value)

args_name:参数名称,用于将参数值传递给函数

args value:参数值:(列表和字典列表,元组和字典元组),有n个值那么用例执行n次

第一种用法:

python 复制代码
@pytest.mark.parametrize("caseinfo",["百里","星摇","依然"])
def test el get token(self,caseinfo):
    print("获取统一接口鉴权码:"+caseinfo)

第二种用法:

python 复制代码
@pytest.mark.parametrize( 'arg1,arg2",[['name,"百里"],['age"2 def test 01 get token(self,arg1,arg2):
print("获取统一接口鉴权码:"+str(arg1)+""+str(arg2))

二、YAML格式测试用例读,写,封装

1、yaml是一种数据格式,扩展名可以是yaml,yml,支持#注释,通过缩进标识层级,区分大小写

用途:

用于做配置文件(yaml,ini)

用于编写自动化测试用例

2、数据组成

python 复制代码
a、map对象:键:(空格)值
name: 阿里



b、数组(list)使用"-"表示
name:
  - name1: 百度
  - name2: 阿里
  - age:
    - age1: 19
    - age2: 20
相关推荐
<花开花落>1 天前
将Python第三方库转换为真正的 pytest 插件
pytest
春风又。4 天前
接口自动化——初识pytest
python·测试工具·自动化·pytest
南部余额4 天前
playwright解决重复登录问题,通过pytest夹具自动读取storage_state用户状态信息
前端·爬虫·python·ui·pytest·pylawright
小码哥说测试7 天前
接口自动化进阶 —— Pytest全局配置pytest.ini文件详解!
自动化测试·软件测试·测试工具·自动化·pytest·测试工程师
天才测试猿8 天前
Python常用自动化测试框架—Pytest
自动化测试·软件测试·python·功能测试·测试工具·测试用例·pytest
Rhys..8 天前
2、pytest核心功能(进阶用法)
开发语言·python·pytest
一只天蝎的晋升之路9 天前
Python中常用的测试框架-pytest和unittest
开发语言·python·pytest
明月与玄武9 天前
pytest-xdist 进行高效并行自动化测试
pytest·pytest-xdist·进行高效并行自动化测试
测试笔记(自看)10 天前
Python+Requests+Pytest+YAML+Allure接口自动化框架
python·自动化·pytest·allure
活跃家族10 天前
Jsonpath使用
python·pytest