socialseed-e2e 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,35 @@
1
+ """
2
+ Core Engine - Motor agnóstico de testing E2E.
3
+
4
+ Este módulo proporciona las clases y funciones principales del framework.
5
+ Todo es agnóstico de servicios específicos.
6
+ """
7
+
8
+ from .base_page import BasePage
9
+ from .config_loader import ApiConfigLoader, get_config, get_service_config, get_service_url
10
+ from .headers import DEFAULT_BROWSER_HEADERS, DEFAULT_JSON_HEADERS, get_combined_headers
11
+ from .interfaces import IServicePage, ITestModule
12
+ from .loaders import ModuleLoader
13
+ from .models import ServiceConfig, TestContext
14
+ from .test_orchestrator import TestOrchestrator
15
+
16
+ __all__ = [
17
+ # Clases principales
18
+ "BasePage",
19
+ "ApiConfigLoader",
20
+ "ModuleLoader",
21
+ "TestOrchestrator",
22
+ "ServiceConfig",
23
+ "TestContext",
24
+ # Interfaces
25
+ "IServicePage",
26
+ "ITestModule",
27
+ # Funciones utilitarias
28
+ "get_config",
29
+ "get_service_config",
30
+ "get_service_url",
31
+ # Constants
32
+ "DEFAULT_JSON_HEADERS",
33
+ "DEFAULT_BROWSER_HEADERS",
34
+ "get_combined_headers",
35
+ ]