How to log the priority of all the network requests of a page in Node.js ? I have already set the requestInterception to true and listening to every request, I want to know if the priority of the request is low/high/highest similar to the chrome-dev-tools.
await page.setRequestInterception(true)
page.on('request', async (request) => {
// code here //
await request.continue();
})