Im using https://github.com/microsoft/playwright-java.
This code:
final BrowserContext context = browser.newContext();
final Page page = context.newPage();
page.onResponse(response -> {
response.body();
});
gives the exception: Response body is unavailable for redirect responses
, when a redirect occurred. Is there a way to get the response body regardless?