This is a practical wrapper around Playwright for testing local webapps without wrestling with server lifecycle management yourself. The with_server.py helper starts your dev servers, waits for them to be ready, runs your test script, then tears everything down. It handles multi-server setups too, like when you need both a backend and frontend running. The documentation emphasizes a reconnaissance-then-action pattern: navigate, wait for networkidle, screenshot or inspect the DOM, then act on what you found. The scripts are intentionally designed as black boxes you call with help flags rather than reading their source, which keeps your context window clean. Good for anyone who writes Playwright tests and is tired of the boilerplate around starting servers.
npx skills add https://github.com/composiohq/awesome-claude-skills --skill webapp-testing