AI Workshop: learn to build apps with AI →
Puppeteer: How to do a screenshot using Puppeteer

Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.


When you have created a Puppeteer page object:

const page = await browser.newPage()

You can use the screenshot() method on it to save the screenshot to screenshot.jpg in this case:

await page.screenshot({
  path: 'screenshot.jpg'
})

Add the fullPage option to screenshot the whole page:

await page.screenshot({
  path: 'screenshot.jpg',
  fullPage: true,
})

Also see my full Puppeteer tutorial

Lessons in this unit:

0: Introduction
1: Introduction to Puppeteer
2: Web Scraping using Node.js and Puppeteer
3: How to click a link with a specific text with Puppeteer
4: ▶︎ How to do a screenshot using Puppeteer