0


postman if 和 for 循环案例

pm.test("Status code is 200", function () {

pm.response.to.have.status(200);

});

pm.test("code 200", function () {

var jsonData = pm.response.json();

pm.expect(jsonData.code).to.eql(200);

});

if (pm.response.json().data !== ""){

for (i in pm.response.json().data){

    // console.log(i);

    if(pm.response.json().data[i].creUser == 102084){

        console.log(pm.response.json().data[i].userBatchNumber);

        pm.environment.set("userBatchNumber2",pm.response.json().data[i].userBatchNumber)

        pm.environment.set("userBatchId2",pm.response.json().data[i].userBatchId)

    };

}

}

标签: postman

本文转载自: https://blog.csdn.net/qq_35961100/article/details/135615400
版权归原作者 夏夜星空218 所有, 如有侵权,请联系我们删除。

“postman if 和 for 循环案例”的评论:

还没有评论