Latest in Browser Automation

HomeBrowser Automation

Driving real browsers from Node.js — Puppeteer and Playwright recipes for scraping, testing, screenshots, and headless workflows.

How to save a web page as PNG or PDF with Puppeteer?

Turn any web page into a PDF or a full-page PNG screenshot with Puppeteer and headless Chrome — natively, in just a few lines, with none of the Xvfb, DPI, or screenshot-stitching workarounds the old Nightmare approach required.

How to create a simple Node app to generate PDF from HTML

Node offers lots of options for data processing and conversion. One of the common scenarios is converting websites to PDF or PNG.

Save full-page screenshots with Chrome

Whenever you need to save a full-page screenshot, there's no need to make several screenshots or make your browser window unbelievably large.
Open the Developer tools with Cmd + Option + J on Mac, or Ctrl + Shift + J on Windows or Linux.
After that, open the command prompt using Command + Shift + P (Mac) or Control + Shift + P (Windows / Linux) and start typing Capture full size screenshot.
2026 Code with Node.js