0

我目前正在运行 Postman,我也做了以下测试:

pm.test("Addition", function () {
    pm.expect(pm.response.text()).to.include("Sture");
});

pm.test("amount", function () {
    pm.expect(pm.response.text()).to.include("60");

});

(见下面我的 json 文件)

[
    {
        "MyList": "BeforeCarl",
        "MyListTotalAmount": "90,92",
        "Mylist2": 
        [
            {
                "name": "Dennis",
                "amount": "10,00"
            },
            {
                "name": "Sture",
                "amount": "60,00"
            },
            {
                "name": "Anders",
                "amount": "30,00"
            }
        ]
    },
    {
        "MyList": "",
        "MyListTotalAmount": "40,00",
        "Mylist2": 
        [
            {
                "name": "Nils",
                "amount": "50,00",
                "": ""
            },
            {
                "name": "Helena",
                "amount": "60,00"
            },
            {
                "name": "Lena",
                "amount": "60,00"
            },
            {
                "name": "Stina",
                "amount": "50,00"
            }
        ]
    },
    {
        "MyList": "Lars",
        "MyListTotalAmount": "10,00",
        "MyList2": 
        [
            {
                "name": "Sten",
                "amount": "50,00"
            },
            {
                "name": "Stig",
                "amount": "30,00"
            }
        ]
    }
]

我现在的问题是我想获取:

 {
                "name": "Helena",
                "amount": "60,00"
            },

我的代码做错的是:
1. 它创建了前 2 个测试(没有必要)
2. 每个获取的字符串都可以在 JSON 中的任何位置。

我希望代码仅检查该部分:

        {
            "name": "Helena",
            "amount": "60,00"
        }

有人可以帮我解决吗?

先感谢您。

4

1 回答 1

1

好吧,如果你想定位一段代码,你可以解析你的 JSON 响应(顺便提一下,当心标志,你混合了 MyList2 和 Mylist2(小写'l')=>我在 Mylist2 中重命名了所有.

当您解析 JSON 正文时,如下例所示,您可以检查值......我不熟悉 pm.expect 的用法,所以我以“旧”方式进行操作,但您可以轻松转换它:

var jsonData = JSON.parse(responseBody);

console.log("json = " + jsonData)
for (i=0; i< jsonData.length;i++){
    console.log("json[i] = " + jsonData[i].Mylist2[0].name) 
    console.log("json[i].length = " + jsonData[i].Mylist2.length)
    for(j=0;j<jsonData[i].Mylist2.length;j++)
    {
        console.log("    json[i].mylist = " + jsonData[i].Mylist2[j].name)   
        if(jsonData[i].Mylist2[j].name == 'Helena') 
            {
                tests["Helena amount 60 ?"] = jsonData[i].Mylist2[j].amount == '60,00'
            }
    }
}

我放了很多控制台输出,所以你可以看到发生了什么......测试[...]相当于pm.expect。

于 2017-11-03T08:22:04.527 回答