一、接口测试 举例:天气预报
网址:www.apishop.net
文章图片
apiKey可以免费申请,我已经有了就不申请了
文章图片
【postman|postman接口测试&断言】输入参数
文章图片
请求成功
文章图片
二、断言 断言和沙盒
文章图片
1.Status code:Code is 200响应状态码是否是200
pm.test("Status code is 200", function () {
pm.response.to.have.status(200);
});
文章图片
然后点击send,查看结果
文章图片
2.Response time is less then 200ms响应时间是否低于200ms
pm.test("Response time is less than 200ms", function () {
pm.expect(pm.response.responseTime).to.be.below(200);
});
文章图片
大于看好里的数字则是错误的
文章图片
3.Response body: Contains string响应包含某个字符串
pm.test("Body matches string", function () {
pm.expect(pm.response.text()).to.include("string_you_want_to_search");
});
我的响应里有“请求成功”
文章图片
4.Response body is equal to a string 响应主体等于某个值
pm.test("Body is correct", function () {
pm.response.to.have.body("response_body_string");
});
我的响应太多了,所有不做例子了
5.Response body:JSON value check响应主体中的某个json键的值是否等于某个值(常用:重点)
pm.test("Your test name", function () {
var jsonData = https://www.it610.com/article/pm.response.json();
pm.expect(jsonData.value).to.eql(100);
});
文章图片
文章图片
推荐阅读
- postman|Postman响应断言
- postman|Postman接口测试如何设置断言
- postman|postman+newman接口自动化测试
- 软件测试|接口测试--参数实现MD5加密签名规则
- postman|Postman进阶篇(一)-pre-request script入门及实现参数使用随机数
- Postman|3天精通Postman---基础应用&接口测试流程&接口架构和协议
- postman|postman接口测试中pre-request scripts使用
- 软件测试|postman|接口测试 | pre-request script 场景应用
- Postman|postman参数化--pre-request script