Advanced Topics
Advanced patterns and best practices for HTTP API
Custom Schema Validators
Runners support Standard Schema-compatible validators, not just Zod:
Performance Optimization
1. Schema Pre-extraction
Schemas are extracted at build time for performance:
2. Parallel Execution
Use orchestrator for parallel execution:
3. Browser Reuse
Playwright contexts are reused when possible:
4. Lazy Loading
Runners are loaded only when needed:
Error Recovery
Implement retry logic:
Testing Runners
Unit Testing
Integration Testing
Advanced Playwright Usage
Custom Browser Options
Multiple Pages
See Also
- Writing Runners - Runner authoring guide
- API Reference - Complete API documentation
- Deployment - Production deployment guide