Puppeteer: Network.response received is missing initial redirects, traffic when opened on the new tab
The use case I'm trying to cover is to read all the traffic from each tab. I'm not controlling the tab page creation and users can create tabs at any time by clicking.
Listeners set on the page level for each page like
await page.setRequestInterception(true);
page.on("request", (request) => {...
page.on("requestfinished", async (rq) => {...
I'm using puppeteer.connect(... method (but the same issue occurs with regular .launch(... too) and the actual scenario is when I connect puppeteer...