一、postman参数化
1、{{变量名}} 花括号,时两个括号
在环境变量中设置变量参数,作用于所有的接口
设置变量:当前所有的接口都可以调用这个参数
get中设置变量:
http://cms.duoceshi.cn/manage/loginJump.do?userAccount={{u1}}&loginPwd={{p1}}
二、断言
test中的内容详解:
常用的断言:
1、断言内容
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("登录成功");
});
2、断言状态码
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
3、断言时间
pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
每个接口检验正确性,都需要用到断言,主要时断言内容
标签:postman,200,断言,实操,test,response,pm From: https://www.cnblogs.com/fujintao/p/18371858