邮递员测试-验证数组中的值

时间:2020-07-30 03:44:24

标签: arrays validation testing duplicates postman

我在Postman中进行了一项测试,可以验证数组中的值。我遇到的问题是返回值可以是随机的。 这就是我正在验证的json。

[
    {
        "id": "7776",
        "revision": {
            "revisionId": "7780",
            "createdByUserId": "Lakare12",
            "createdDateTime": "2020-07-29T16:49:34.000+05:30"
        },
        "identifiers": [
            {
                "system": "urn:oid:1.2.752.129.2.1.4.1",
                "value": "CDE473Child1",
                "use": "primary",
                "displayValue": null
            }
        ],
        "name": "AA Child 01",
        "active": true,
        "hasChildren": false,
        "parentUnitId": "7768"
    },
    {
        "id": "7783",
        "revision": {
            "revisionId": "7783",
            "createdByUserId": "Lakare12",
            "createdDateTime": "2020-07-30T08:47:40.000+05:30"
        },
        "identifiers": [
            {
                "system": "urn:oid:1.2.752.129.2.1.4.1",
                "value": "CDE473Child3",
                "use": "primary",
                "displayValue": null
            }
        ],
        "name": "BB main Child 03",
        "active": true,
        "hasChildren": false,
        "parentUnitId": "7768"
    }
]

我需要测试名称是否包含BB main Child 03

1 个答案:

答案 0 :(得分:0)

您可以遍历数组并检查每个数组元素中的名称。