Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Test and interact with local web applications using native Python Playwright scripts
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
SKILL.md
1---2name: webapp-testing3description: Toolkit for interacting with and testing local web applications using Playwright. Supports verifying frontend functionality, debugging UI behavior, capturing browser screenshots, and viewing browser logs.4license: Complete terms in LICENSE.txt5---67# Web Application Testing89To test local web applications, write native Python Playwright scripts.1011**Helper Scripts Available**:12- `scripts/with_server.py` - Manages server lifecycle (supports multiple servers)1314**Always run scripts with `--help` first** to see usage. DO NOT read the source until you try running the script first and find that a customized solution is abslutely necessary. These scripts can be very large and thus pollute your context window. They exist to be called directly as black-box scripts rather than ingested into your context window.1516## Decision Tree: Choosing Your Approach1718```19User task → Is it static HTML?20├─ Yes → Read HTML file directly to identify selectors21│ ├─ Success → Write Playwright script using selectors22│ └─ Fails/Incomplete → Treat as dynamic (below)23│24└─ No (dynamic webapp) → Is the server already running?25├─ No → Run: python scripts/with_server.py --help26│ Then use the helper + write simplified Playwright script27│28└─ Yes → Reconnaissance-then-action:291. Navigate and wait for networkidle302. Take screenshot or inspect DOM313. Identify selectors from rendered state324. Execute actions with discovered selectors33```3435## Example: Using with_server.py3637To start a server, run `--help` first, then use the helper:3839**Single server:**40```bash41python scripts/with_server.py --server "npm run dev" --port 5173 -- python your_automation.py42```4344**Multiple servers (e.g., backend + frontend):**45```bash46python scripts/with_server.py \47--server "cd backend && python server.py" --port 3000 \48--server "cd frontend && npm run dev" --port 5173 \49-- python your_automation.py50```5152To create an automation script, include only Playwright logic (servers are managed automatically):53```python54from playwright.sync_api import sync_playwright5556with sync_playwright() as p:57browser = p.chromium.launch(headless=True) # Always launch chromium in headless mode58page = browser.new_page()59page.goto('http://localhost:5173') # Server already running and ready60page.wait_for_load_state('networkidle') # CRITICAL: Wait for JS to execute61# ... your automation logic62browser.close()63```6465## Reconnaissance-Then-Action Pattern66671. **Inspect rendered DOM**:68```python69page.screenshot(path='/tmp/inspect.png', full_page=True)70content = page.content()71page.locator('button').all()72```73742. **Identify selectors** from inspection results75763. **Execute actions** using discovered selectors7778## Common Pitfall7980❌ **Don't** inspect the DOM before waiting for `networkidle` on dynamic apps81✅ **Do** wait for `page.wait_for_load_state('networkidle')` before inspection8283## Best Practices8485- **Use bundled scripts as black boxes** - To accomplish a task, consider whether one of the scripts available in `scripts/` can help. These scripts handle common, complex workflows reliably without cluttering the context window. Use `--help` to see usage, then invoke directly.86- Use `sync_playwright()` for synchronous scripts87- Always close the browser when done88- Use descriptive selectors: `text=`, `role=`, CSS selectors, or IDs89- Add appropriate waits: `page.wait_for_selector()` or `page.wait_for_timeout()`9091## Reference Files9293- **examples/** - Examples showing common patterns:94- `element_discovery.py` - Discovering buttons, links, and inputs on a page95- `static_html_automation.py` - Using file:// URLs for local HTML96- `console_logging.py` - Capturing console logs during automation