在预请求脚本中抛出错误消息不起作用
Throw error message in pre request script is not working
pm.sendRequest(options, function (err, res) {
if (res.code == 400) {
throw new Error("Invalid");
}else{
pm.request.headers.add({
key: "Authorization",
value: 'Bearer '+res.json().access_token});
}
});
上面的预请求脚本抛出错误
Response: There was an error in evaluating the Pre-request Script:Error: Invalid
邮递员版本:9.7.1,
OS: Windows,
应用类型:Postman 桌面应用
它按照要求执行,它抛出错误“无效”,因为状态为 400。
所以你得到了提到的错误。说“无效”。尝试更改错误消息
pm.sendRequest(options, function (err, res) {
if (res.code == 400) {
throw new Error("Invalid");
}else{
pm.request.headers.add({
key: "Authorization",
value: 'Bearer '+res.json().access_token});
}
});
上面的预请求脚本抛出错误
Response: There was an error in evaluating the Pre-request Script:Error: Invalid
邮递员版本:9.7.1, OS: Windows, 应用类型:Postman 桌面应用
它按照要求执行,它抛出错误“无效”,因为状态为 400。
所以你得到了提到的错误。说“无效”。尝试更改错误消息