🚀 Feature Request
Add maxRedirects to options parameter of apiRequest.newContext
Example
await apiRequest.newContext({
maxRedirects: 0
});
Motivation
With API testing we have a lot of post/get request (on the same context) that we explicitly do not want to redirect. Currently this option has to be passed to each post/get/etc. call. We would like to define it instead on the APIRequestContext via the already existing options parameter such that we don't have to repeat ourselves.