51Testing软件测试论坛
标题:
用postman验证接口是否返回某字段
[打印本页]
作者:
测试积点老人
时间:
2020-6-10 10:27
标题:
用postman验证接口是否返回某字段
接口返回:
{
"data": [
{
"word": "上海",
"List": [
{
"word": "景点",
"type": "sight"
},
{
"word": "酒店",
"type": "hotel"
}
],
},
}
复制代码
需要验证接口List中是否返回type字段(不需要验证值是否正确,只要验证是否返回该字段)
Tests中脚本:
var jsonData = pm.response.json();
pm.test("type字段检查", function () {
length = jsonData.data[0].List.length;
console.log(length);
for(i=0;i<length;i++){
console.log(jsonData.data[0].List[i]);
pm.expect(jsonData.data[0].List[i]).to.include("type");
}
});
复制代码
执行后报错:
[attach]128907[/attach]
作者:
bellas
时间:
2020-6-11 09:32
检查下,检查点写的是否正确
作者:
海海豚
时间:
2020-6-11 11:14
或者可以直接在test里面用postman提供的has 来判断
作者:
qqq911
时间:
2020-6-11 11:21
语法有问题
作者:
郭小贱
时间:
2020-6-11 13:59
检查点的格式不对
欢迎光临 51Testing软件测试论坛 (http://bbs.51testing.com/)
Powered by Discuz! X3.2