Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Load testing with Postman REST/RESTFUL tool

I have added the plugin Postman to Chrome browser for load testing of my API.

But I am clueless about how to do the load test with Postman tool.

My query is how to simulate "Virtual Users" in this tool?

like image 676
Kuntal Avatar asked Mar 30 '16 11:03

Kuntal


People also ask

Can I use Postman to do load testing?

With Postman, it's possible to easily consume local and internet services, and do load and performance tests on the responses to request cookies, status code, response time, and so on.

CAN REST API be tested using Postman?

POSTMAN is a REST client used for performing backend API testing. In POSTMAN, we pass the API call and check the API response, status codes and payload. Swagger is another HTTP Client tool where we create API documentation and through swagger, we can also hit the API and get the response.


1 Answers

Postman has a Collection Runner which can be used for making API calls with multiple iterations.
You might be able to use it for load testing if you can figure out how to get it to run requests in parallel.

enter image description here

like image 56
Matt Frear Avatar answered Sep 18 '22 21:09

Matt Frear