如何通过使用“ to.be”在邮递员中使用响应断言?

时间:2019-06-07 08:49:23

标签: postman postman-pre-request-script postman-testcase

enter image description here

我正在尝试使用响应断言来验证阳性和阴性测试用例,但没有给我预期的结果。

我正在尝试使用“ pm.response.to.be.ok”确认响应,以获取“ 200”的响应,依此类推,如屏幕快照中所示,但它给了我错误

  

TypeError:无法读取未定义的属性“ to”

1 个答案:

答案 0 :(得分:0)

测试中的语法不正确,这就是为什么它会引发错误,它应该是这样的:

pm.test('Check the response', () => {
    pm.response.to.be.ok
    pm.response.to.have.body()
    pm.response.to.have.jsonBody()
})

https://learning.getpostman.com/docs/postman/scripts/postman_sandbox_api_reference/