-
-
Notifications
You must be signed in to change notification settings - Fork 3
Closed
Labels
questionFurther information is requestedFurther information is requested
Description
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!
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
questionFurther information is requestedFurther information is requested