标签:发送 src info http status 案例 exp expec 安装
在请求中test
选项下,添加断言,在响应中的Test result
查看断言结果
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
}); //断言状态码是200
pm.test("Body matches string “yunda”", function () {
pm.expect(pm.response.text()).to.include("yunda");
}); //检查响应主体中是否包含指定字符串
标签:发送 src info http status 案例 exp expec 安装
原文地址:https://www.cnblogs.com/onehang/p/11697199.html