playwright
Installation
SKILL.md
Playwright — Browser Screenshots & Interaction
Use Playwright to open a real browser, navigate to URLs, take screenshots, and interact with pages. This is the go-to approach for visual verification of any web content — Penpot designs, local dev servers, production sites, etc.
Setup
Playwright is installed at /Users/espen/node_modules/playwright.
When writing scripts, always require from the absolute path:
const { chromium } = require('/Users/espen/node_modules/playwright');
Quick Screenshot
Write a .cjs script to /tmp/, run it with node, then read the resulting PNG.