Bootstrap

Postman之断言test

断言

参考大神文章:https://blog.csdn.net/qq_39314932/article/details/103037976
postman断言位置如图
在这里插入图片描述

断言:
1.获取环境变量

pm.environment.get("variable_key");

2.获取全局变量

pm.globals.get("variable_key");

3.获取变量中的某个值

pm.variables.get("variable_key")

4.获取集合中的变量

pm.collectionVariables.get("variable_key");

在这里插入图片描述
5.设置环境变量

pm.environment.set("variable_key", "variable_value");

6.设置全局变量

pm.globals.set("variable_key", "variable_value");

7.设置集合变量

pm.collectionVariables.set("variable_key", "variable_value");

8.清空某个环境变量

pm.environment.unset("variable_key");

9.清空某个全局变量

pm.globals.unset("variable_key");

10.清空某个集合变量

pm.collectionVariables.unset("variable_key");

11.发送request请求

pm.sendRequest("https://postman-echo.com/get", function (err, response) {
   
    console.log(response.json());
});

11.状态码

pm.test
;