#!/bin/bash

# Quick start guide for Apicentric E2E Testing
# Este script abre el README en el navegador para comenzar

echo "🧪 Apicentric E2E Testing - Quick Start"
echo ""
echo "📚 Archivos clave:"
echo "  • Documentación: testing/README.md"
echo "  • Resumen:       testing/SYSTEM-SUMMARY.md"
echo "  • Script main:   testing/run-e2e-tests.sh"
echo "  • Script quick:  testing/quick-test.sh"
echo ""
echo "🚀 Para comenzar:"
echo ""
echo "  1. Ejecución completa (inicia backend + frontend + tests):"
echo "     ./testing/run-e2e-tests.sh"
echo ""
echo "  2. Tests rápidos en desarrollo (servicios ya running):"
echo "     ./testing/quick-test.sh"
echo ""
echo "  3. Con navegador visible:"
echo "     ./testing/run-e2e-tests.sh --headed"
echo ""
echo "  4. Ver ayuda completa:"
echo "     ./testing/run-e2e-tests.sh --help"
echo ""
echo "📊 Tests disponibles:"
echo "  • 01-basic-navigation   - 8 tests de navegación"
echo "  • 02-dashboard          - 10 tests de dashboard"
echo "  • 03-service-management - 10 tests de servicios"
echo "  • 04-backend-integration- 13 tests de backend"
echo "  Total: 41 tests E2E"
echo ""
echo "📍 Ubicaciones:"
echo "  Tests:       webui/tests/e2e/"
echo "  Helpers:     webui/tests/utils/"
echo "  Fixtures:    webui/tests/fixtures/"
echo "  Scripts:     testing/"
echo "  CI/CD:       .github/workflows/e2e-tests.yml"
echo ""
