不推荐使用“请求”。请改用“pm.request”

问题描述 投票:0回答:1

我想在我的纽曼报告中包含我的邮递员集合的请求名称。所以,我在我的脚本中添加了以下代码,

pm.test(`${request.name}: Status Assertion`, function () {
    pm.response.to.have.status(401);
});

我正确获取了请求名称。但是,我在控制台中收到以下警告,

enter image description here

当我使用 pm.request 时,

console.log('Request name: ',pm.request.name)

我得到的值是未定义的, enter image description here

如何摆脱警告并获得请求的名称?

提前致谢

javascript postman newman
1个回答
© www.soinside.com 2019 - 2024. All rights reserved.