~postman使用Runner

1、准备参数的.text文件。

postman支持三种参数的方式,分别为.text文件,.csv文件,json文件。此处使用.text文件。编码格式使用utf-8

~postman使用Runner

 2、替换请求参数

~postman使用Runner

 3、设置Runner

~postman使用Runner

 4、查看执行结果

~postman使用Runner

 5、添加断言

// 断言响应状态码是否为200
pm.test("响应状态码为200", function () {
    pm.response.to.have.status(200);
});

// 判断是否包含登录成功
pm.test("登录成功", function () {
    var jsonData = pm.response.json();
    pm.expect(jsonData.msg).to.eql("登录成功");
});

~postman使用Runner