| name | hybrid-testing |
| description | Run comprehensive multi-layer testing on a web application |
| triggers | ["validate deployment","test the site","run E2E","check for errors","test everything","accessibility check","console errors"] |
Hybrid Testing
Automatically run multi-layer tests against a web application in a single pass.
When This Triggers
This skill activates when you need to validate a deployment or test a site comprehensively. It combines:
- Console Error Capture โ Catches JavaScript errors and uncaught exceptions during page load
- Accessibility Scanning โ Runs axe-core WCAG compliance checks
How To Use
- Identify the target URL to test
- Run the test command:
npx webmcp test <url>
- Review the unified report โ each plugin reports PASS/WARN/FAIL with specific findings
- Fix any FAIL or WARN issues
- Re-run to verify fixes
For CI/CD Integration
npx webmcp test https://staging.example.com --json -o test-report.json
Combining With Scout + Forge
For full agent-ready testing:
npx webmcp scout <url> โ Discover all interactive elements
npx webmcp forge <map.json> โ Generate WebMCP tool contracts
npx webmcp test <url> โ Run multi-layer quality checks