Answers for "postman test api response time"

0

postman test api response time

pm.test("Response time is less than 200ms", () => {
  pm.expect(pm.response.responseTime).to.be.below(200);
});
Posted by: Guest on June-03-2021
0

how to test response in postman

Basicall we are checking response body
to verify if request matches with response.
In the response we are verifying
(body, status code, header, response time,
 test structure of json against the given jsonSchema)
Posted by: Guest on January-13-2021

Browse Popular Code Answers by Language