travistx 0 Report post Posted February 13, 2018 Is there a way to separate out a chain of redirect requests? I have a chain of 3 requests (2 redirects, followed by a 200 response). I need to capture a variable from the response of the second redirect. I don't see a way to do this. Here's a screenshot if that helps: https://imgur.com/dhrX99P Thanks! Quote Share this post Link to post Share on other sites
sergei 0 Report post Posted February 14, 2018 You need to use "Do not follow redirect" option for the first request of a chain. It will prevent WAPT to follow redirect. Then you need to create requests for redirects manually using URLs from Location header. In this case you will be able to process responses for these requests. Quote Share this post Link to post Share on other sites