测试失败时如何显示响应正文的值
我是在 Postman 中编写预请求脚本和测试的新手。所以,我想知道当测试失败时是否可以显示响应正文的值。
这是错误响应正文的示例,我希望测试结果为“FAIL”并在测试结果选项卡中显示“errorReason”的值。
{
"errors": [
{
"errorCode": 401,
"errorReason": "BALANCE_BELOW_ZERO"
}
]
}
I'm new to writing pre-request script and tests in Postman. So, I wonder if there's possible to make show the value from response body when the tests fail.
This is the example of the error response body and I want the test result to "FAIL" and show the value from "errorReason" in the test results tab.
{
"errors": [
{
"errorCode": 401,
"errorReason": "BALANCE_BELOW_ZERO"
}
]
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我用这种方式从api获取错误消息
I using this way to get error message from api