摘要:
检查响应状态码是否为200 、201、202中的一个: pm.test("successful post request",function(){ pm.expect(pm.response.code).to.be.oneOf([200,201,202]);}); 阅读全文
摘要:
检查响应状态码是否为200: pm.test("status code is 200",function() { pm.response.to.have.status(200);}); 阅读全文
摘要:
检查响应体中是否包含“金庸”: pm.test("body matches string",function(){ pm.expect(pm.response.text()).to.include("金庸");}); 前提: 测试脚本: 失败如下所示: 阅读全文
摘要:
网址:https://learning.getpostman.com/docs/postman/scripts/test-scripts/ 测试脚本 您可以使用JavaScript为Postman API请求编写测试脚本。 通过测试,您可以确保API能够按预期运行,确定服务之间的集成可靠运行,并验证 阅读全文
摘要:
示例: (1)、添加一个豆瓣搜索请求API (2)、设置预请求脚本 (3)、设置测试脚本 (4)、执行请求后,查看控制台 (5)、执行请求后,查看环境变量 (6)、查看搜索结果 设置、获取变量: 设置全局变量:pm.globals.set("key","value"); 获取全局变量:pm.glob 阅读全文