webapp-testing
Installation
SKILL.md
Web Application Testing
Test and interact with web applications using Playwright. Supports ad-hoc browser tasks, Python test scripts, and TypeScript E2E patterns.
Ad-hoc Browser Interaction
For quick one-off tasks — no test framework or codebase required.
from playwright.sync_api import sync_playwright
with sync_playwright() as p:
browser = p.chromium.launch(headless=True)
page = browser.new_page()
page.goto('https://example.com')
page.wait_for_load_state('networkidle')
# Screenshot
page.screenshot(path='/tmp/screenshot.png', full_page=True)