Skip to content

Latest commit

 

History

History
110 lines (75 loc) · 3.16 KB

File metadata and controls

110 lines (75 loc) · 3.16 KB

📚 Flutter Test Pilot - Documentation Index

Welcome to the Flutter Test Pilot documentation! This folder contains comprehensive guides for all features.


📖 Quick Links

Getting Started

Implementation Guides

Feature Guides

Additional Resources


🎯 Recommended Reading Order

For New Users

  1. Main README - Understand what Flutter Test Pilot is
  2. Real World Usage Guide - See practical examples
  3. Enhanced Tester Guide - Learn testing utilities

For Advanced Features

  1. Phase 2 Complete - Native handling setup
  2. Native Action Handler - Configure native features
  3. PilotFinder Guide - Advanced widget finding

For Integration

  1. Implementation Complete - Full feature overview
  2. Real World Usage Guide - Integration examples
  3. Test-Driven Watcher - Configure watchers

📂 Documentation Structure

doc/
├── README.md (this file)
├── ENHANCED_TESTER_GUIDE.md         # Advanced testing utilities
├── IMPLEMENTATION_COMPLETE.md       # Phase 2 & 3 summary
├── PHASE_2_COMPLETE.md             # Native handling details
├── PILOT_FINDER_GUIDE.md           # Widget finding strategies
├── REAL_WORLD_USAGE.md             # Practical usage guide
├── flutter_test_pilot_docs.md      # API documentation
├── native_action_handler_guide.md  # Native dialog handling
├── test_driven_watcher_guide.md    # Watcher configuration
└── testsuite_sections_doc.md       # Test organization

🚀 Quick Examples

Basic Test Run

flutter_test_pilot run integration_test/login_test.dart

With Native Features

flutter_test_pilot run integration_test/login_test.dart \
  --app-id=com.example.myapp \
  --native-watcher \
  --pre-grant-permissions=all \
  --disable-animations

Parallel Execution

flutter_test_pilot run integration_test/ \
  --parallel \
  --concurrency=3 \
  --retry=2

💡 Need Help?

  • Bug Reports: Create an issue on GitHub
  • Feature Requests: Open a discussion
  • Questions: Check the guides above first

Last Updated: January 21, 2026