使用 postman 进行接口自动化测试

新建一个合集

image

创建新的请求保存在此合集下,并添加测试脚本

//根据返回的 Code 判断请求情况 
tests["HTTP响应成功"] = responseCode.code === 200;
var jsonData = JSON.parse(responseBody);
tests["业务处理成功"] = jsonData.statusCode === 100;

image

运行合集请求

image

运行结果

image

参考

https://cloud.tencent.com/developer/article/1896442

posted @ 2024-01-19 18:21  strongmore  阅读(10)  评论(0编辑  收藏  举报