Hi first of all, thank you for this amazing project!
I have a question regarding request interception. I would like to intercept .m3u8 requests and access their URLs. For example, is something like the following javascript supported?
let m3u8;
await page.route('**/*.m3u8', route => {
m3u8 = route.request().url();
route.abort();
});
Is this approach supported in Playwright PHP? If so, what is the recommended way to implement this pattern so that I can capture the URL of .m3u8 files while aborting the request?
Thank you in advance for your guidance!
Hi first of all, thank you for this amazing project!
I have a question regarding request interception. I would like to intercept .m3u8 requests and access their URLs. For example, is something like the following javascript supported?
Is this approach supported in Playwright PHP? If so, what is the recommended way to implement this pattern so that I can capture the URL of .m3u8 files while aborting the request?
Thank you in advance for your guidance!