Postman: How to make multiple requests at the same time

前端 未结 8 865
滥情空心
滥情空心 2020-12-12 10:55

I want to POST data from Postman Google Chrome extension.

I want to make 10 requests with different data and it should be at the same time.

相关标签:
8条回答
  • 2020-12-12 11:33

    I guess there's no such feature in postman as to run concurrent tests.

    If i were you i would consider Apache jMeter which is used exactly for such scenarios.

    Regarding Postman, the only thing that could more or less meet your needs is - Postman Runner. There you can specify the details:

    • number of iterations,
    • upload csv file with data for different test runs, etc.

    The runs won't be concurrent, only consecutive.

    Hope that helps. But do consider jMeter (you'll love it).

    0 讨论(0)
  • 2020-12-12 11:33

    In postman's collection runner you can't make simultaneous asynchronous requests, so instead use Apache JMeter instead. It allows you to add multiple threads and add synchronizing timer to it

    0 讨论(0)
提交回复
热议问题