我们如何在 Postman Automation 的先决条件中设置依赖关系?
How can we set dependency in pre requisite of Postman Automation?
我有 2 个 Postman 脚本:
- 发出报价
- 兑换优惠
兑换要约 API 取决于发行要约 API。因此,每次 运行 兑换优惠,我们需要 运行 首次发出优惠。
为此,我们如何将发行报价添加到兑换报价的先决条件中?
在Postman中,这个概念是相反的:你可以使用postman.setNextRequest()
来设置下一个要执行的请求。
所以在Issue offer
中,你调用postman.setNextRequest('Redeem offer')
,Issue offer
执行完后,Redeem offer
就会被执行
有关详细信息,请参阅 https://learning.postman.com/docs/running-collections/building-workflows/
我有 2 个 Postman 脚本:
- 发出报价
- 兑换优惠
兑换要约 API 取决于发行要约 API。因此,每次 运行 兑换优惠,我们需要 运行 首次发出优惠。
为此,我们如何将发行报价添加到兑换报价的先决条件中?
在Postman中,这个概念是相反的:你可以使用postman.setNextRequest()
来设置下一个要执行的请求。
所以在Issue offer
中,你调用postman.setNextRequest('Redeem offer')
,Issue offer
执行完后,Redeem offer
就会被执行
有关详细信息,请参阅 https://learning.postman.com/docs/running-collections/building-workflows/