Skip to content

Instantly share code, notes, and snippets.

@masayuki038
Created June 22, 2019 15:31
Show Gist options
  • Save masayuki038/bbe44fd554be644d0900a62c423658af to your computer and use it in GitHub Desktop.
Save masayuki038/bbe44fd554be644d0900a62c423658af to your computer and use it in GitHub Desktop.
const puppeteer = require('puppeteer');
(async () => {
const browser = await puppeteer.launch();
const page = await browser.newPage();
await page.goto('https://www.google.com');
await page.screenshot({path: 'screenshot.png'});
await browser.close();
})();
@masayuki038
Copy link
Author

screenshot

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment