我的 postman 脚本测试中有以下断言,但由于某些原因,如果缺少以下条件之一,则测试将失败:租借,财务或套现。是“||”不是OR运算符?

tests["Deal Type"] = responseBody.has("Lease" || "Finance" || "Cash");

最佳答案

应该是这样的:

pm.expect(pm.response.code).to.be.oneOf([201,202]);

关于postman - postman 响应测试中的OR运算符,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/46574030/

10-15 19:18