Created
June 22, 2019 15:31
-
-
Save masayuki038/bbe44fd554be644d0900a62c423658af to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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(); | |
})(); |
Author
masayuki038
commented
Jun 22, 2019
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment