在邮递员中循环邮寄请求

时间:2018-05-29 09:32:02

标签: testing post asp.net-web-api web postman

我需要测试我的Web api。我使用Postman向网址发送请求。我可以循环吗?示例:在u​​rl_1上发送10次请求,如果收到错误 - 停止发送,否则 - 在url_2上发送10次请求等。我可以和Postman一起做吗?

1 个答案:

答案 0 :(得分:1)

Postman的Collection Runner可用于指定number of iterations。此外,使用Postman的CLI伴侣newman,您可以使用--bail--iteration-count标记来实现您的要求:

newman run some_collection.json --iteration-count 10 --bail failure

,其中

  

--bail [optional modifiers]指定在遇到第一个测试脚本错误时是否停止收集运行。

     

--iteration-count <number>指定必须运行集合的次数