如何在 POSTMAN 工具中使用 GET 方法的环境变量?
如何在邮递员中使用环境变量获取方法,我有客户 ID,但我需要发送不同的客户 ID,检查响应,但我想通过邮递员工具中驱动的数据发送客户 ID
how can I use environment variables for get method in postman, I have customer id's with me but I need to send different customer id's n check the response, but I want to send customer ID's through data driven in postman tool
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
想象一下环境变量中有一个
customerId
。要在正文中或作为参数发送此值,只需将静态值替换为{{customerId}}
即可。用法:
要更新变量,假设我们有以下响应:
在测试选项卡中以这种方式更新它:
Imagine there is a
customerId
in env variables. To send this value in body or as param, just replace the static value with{{customerId}}
.usage:
To update the variable, imagine we have the following response:
in the test tab update it this way: