当前位置 : 主页 > 编程语言 > python >

Pytest学习-yaml+parametrize接口实战

来源:互联网 收集:自由互联 发布时间:2022-08-10
一、废话不罗嗦,直接上代码 @ pytest . mark . parametrize ( "mobile, appkey" , get_data [ "mobile_belong_get" ]) def test_mobile ( mobile , appkey ): r = requests . get ( 'https://api.binstd.com/shouji/query' , params = { "shouj

一、废话不罗嗦,直接上代码

@pytest.mark.parametrize("mobile, appkey", get_data["mobile_belong_get"])
def test_mobile(mobile, appkey):

r = requests.get('https://api.binstd.com/shouji/query', params={
"shouji": mobile,
"appkey": appkey
})
print(r.status_code)
assert r.status_code == 200
print(r.json())
print("zhou")

Pytest学习-yaml+parametrize接口实战_pytest

二、yaml数据

Pytest学习-yaml+parametrize接口实战_pytest_02

上一篇:数据结构的几个小问题
下一篇:没有了
网友评论