post man 参数胡
Posted wangzhiqiang004
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了post man 参数胡相关的知识,希望对你有一定的参考价值。
postman 参数化:
前置处理器(Pre-requestScriptest):
postman.setGlobalVariable("key","value");
body中使用:"{{key}}"
后置处理器:
如果是标准接口返回的json
可以在后置处理器(Tests)中添加:
jsonData = JSON.parse(responseBody);
postman.setGlobalVariable("caseId", jsonData.data.caseId);
postman.setGlobalVariable("userId", jsonData.data.userId);
以上是关于post man 参数胡的主要内容,如果未能解决你的问题,请参考以下文章