【发布时间】:2021-09-25 13:38:18
【问题描述】:
我正在尝试使用 Postman 来验证 API。 我可以毫无问题地验证单个请求,并获得所需的输出。 但是,我现在想进行负载测试,并运行相同的调用 5 次。
我尝试使用 for 和 while 循环,但 Postman 给出了错误。
while i < 5
{
"FirstName": "TestFN",
"LastName": "TestLN",
"orderID": *I want to update this based on the value of i --> "Concat(100,i)"*
}
【问题讨论】:
-
我认为this 可以回答您的问题。
标签: loops while-loop postman