2

I have 10 POST requests in a collection and it doesn't have any dependency on each request. When I tried to execute the collection it was running sequentially and it will be time-consuming. As all the requests are independent of each other, Is it possible to execute the 10 POST requests in parallel so that it saves a lot of time.

Is it possible via postman or do I need to look for other tools or any workaround in postman?

Sivasakthi Jayaraman
  • 4,724
  • 3
  • 17
  • 27

1 Answers1

1

As described on this page: parallelly request source

It is necessary to create an sh file to execute the queries in parallel

newman run postman/smoke-test/collection.json -e postman/smoke-test/environments/staging.json

You can learn what is Newman in this page: newman doc

Lucas Bodin
  • 311
  • 3
  • 19