| 1 | --- |
| 2 | name: webapp-testing |
| 3 | description: Start/reuse a local app, wait for readiness, inspect rendered state/console/network, act from observed selectors, and verify with evidence. |
| 4 | invocation: model+user |
| 5 | --- |
| 6 | |
| 7 | # Webapp Testing |
| 8 | |
| 9 | ## When to use |
| 10 | Use to prove a web app flow works in a real browser/runtime context. |
| 11 | |
| 12 | ## Non-goals |
| 13 | - Do not claim success from unit tests alone. |
| 14 | - Do not hardcode fragile selectors without observation. |
| 15 | |
| 16 | ## Workflow |
| 17 | 1. Start or reuse the local app. |
| 18 | 2. Wait for readiness. |
| 19 | 3. Inspect DOM/console/network. |
| 20 | 4. Drive the flow from observed state. |
| 21 | 5. Record evidence of pass/fail. |
| 22 |