Postman tips and tricks
Store the json reponse in a variable
var jsonData=pm.response.json();
let saveData=JSON.stringify(jsonData);
pm.environment.set("get-ip-response",saveData);
check the response time
pm.test("Response time is less than 3000ms", function () {
pm.ex...
hashcodehub.hashnode.dev1 min read