其他分享
首页 > 其他分享> > postman常用代码Pre-request Script

postman常用代码Pre-request Script

作者:互联网

 

pm.globals.unset("variable_key"); 清除全局变量
pm.environment.unset("variable_key"); 清除环境变量
pm.globals.get("variable_key"); 获取全局变量
pm.variables.get("variable_key"); 获取一个变量
pm.environment.get("variable_key"); 获取环境变量
pm.sendRequest("https://postman-echo.com/get", function (err, response) {
console.log(response.json());
}); 发送一个请求
pm.globals.set("variable_key", "variable_value"); 设置环境变量

 

标签:Pre,postman,Script,get,globals,key,variable,环境变量,pm
来源: https://www.cnblogs.com/cgy-home/p/15545006.html