Skip to content

Instantly share code, notes, and snippets.

@AmigoDheena
Created June 15, 2019 05:14
Show Gist options
  • Save AmigoDheena/5b261ff3ea620dc5b5279d7c12efb7a1 to your computer and use it in GitHub Desktop.
Save AmigoDheena/5b261ff3ea620dc5b5279d7c12efb7a1 to your computer and use it in GitHub Desktop.
Puppeteer request blocker
await page.setRequestInterception(true);
//Request Blocker
page.on('request', (req) => {
if(req.resourceType() == 'stylesheet' || req.resourceType() == 'font' || req.resourceType() == 'image' || req.resourceType() == 'script'){
req.abort();
}
else {
req.continue();
}
});
//Request Blocker
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment