3. Postman Tests断言(转)

Posted jasmine0302

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了3. Postman Tests断言(转)相关的知识,希望对你有一定的参考价值。

1. HTTP状态码断言:tests["Http状态码200"] = responseCode.code == 200;

2. 响应包含内容断言:tests["状态码200"] = responseBody.has("登录成功");

示例如下:

URL:https://demo.fastadmin.net/admin/index/login.html

用户名/密码:admin/123456

技术分享图片

技术分享图片

 

3. JSON响应断言:

var jsonData = JSON.parse(responseBody);
tests["code = 100000表示成功"] = jsonData.code ==100000
tests["msg为success"] = jsonData.msg == "success"

示例如下:

URL:http://www.tuling123.com/openapi/api?key=ec961279f453459b9248f0aeb6600bbe&info=你好

技术分享图片

 

转自:https://www.jianshu.com/p/4b374b4556c5

以上

2019.01.14

 



以上是关于3. Postman Tests断言(转)的主要内容,如果未能解决你的问题,请参考以下文章

Postman系列之Tests断言

利用 Postman 中 Tests 断言校验返回结果

利用 Postman 中 Tests 断言校验返回结果

postman添加断言

postman断言内容详解

7-postman的报错:This request does not have any tests.处理办法