Skip to content

Instantly share code, notes, and snippets.

@bmorelli25
Last active March 22, 2019 10:53
Show Gist options
  • Save bmorelli25/e8069ac084348ca44207d16f5cd5d6cc to your computer and use it in GitHub Desktop.
Save bmorelli25/e8069ac084348ca44207d16f5cd5d6cc to your computer and use it in GitHub Desktop.
Screenshot with Puppeteer
const puppeteer = require('puppeteer');
async function getPic() {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://google.com');
await page.screenshot({path: 'google.png'});
await browser.close();
}
getPic();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment