Javascript – Postman Script: Only the Last Request is Getting Executed in a Loop, Why?
why this is happening only request at the last is only getting executed. pre- request script: const testCases = ['1002', '3002', '100002', 'singh', '1002y']; // Set the productid variable for the current iteration pm.variables.set('productid', testCases[3]); pm.sendRequest({ url: pm.variables.replaceIn("{{baseUrl}}/products/:priductId"), method: 'GET'…