// 添加前置url 使用目录定义的变量;pm.request.url = pm.collectionVariables.get("host") + pm.request.url;pm.request.headers.add(pm.collectionVariables.get("token"),"test";"token");pm.test("set token":
postman是开发常用的接口测试工具
这里记录一下postman提效方法
1. 创建目录: 后台
2. 定义目录变量
- host 接口域名
3. 目录定义预执行脚本
// 添加前置url 使用目录定义的变量 pm.request.url = pm.collectionVariables.get("host") + pm.request.url; pm.request.headers.add(pm.collectionVariables.get("token") ?? "test", "token");
4. 登录接口后置脚本
pm.test("set token", function () { let jsonData = pm.response.json(); //判断相应码是否为0 pm.expect(jsonData.code).to.eql('0'); //将响应中的token提取出来设置为目录变量 pm.collectionVariables.set("token", jsonData.data.loginToken); });
5. 新增的接口 url 只需要填 路径部分即可 发起请求, 请求自动携带token
原文地址:https://cloud.tencent.com/developer/article/2116256
评论列表