Parallel flows
You can execute and compare responses from multiple API calls in parallel in YAML tests
execute:
type: parallel # this means multiple requests are configured to run in parallel
requests:
- req:
...
- req:
... Instructions available -
execute:
type: parallel
requests:
- req:
- add_body_param:
test1: one
- req:
- add_body_param:
test2: two
- req:
- add_body_param:
test3: three
validate:
response_code:
gte: 200
lt: 300Last updated