TAE describes layered automation architectures where higher layers express intent and test logic, while lower layers handle concrete interaction with specific technologies and interfaces. The test adaptation layer is the layer that “adapts” abstract test actions to the real SUT interaction mechanisms. It typically contains technology-specific adapters, drivers, wrappers, or connectors (e.g., browser drivers, mobile automation bridges, API clients, message-bus connectors, database utilities) that translate logical operations like “click login,” “submit order,” or “query customer” into the correct low-level calls for the target interface. This is where the details of protocols, locator strategies, synchronization primitives, data access methods, and tool-specific APIs live, shielding higher layers from churn when technologies change. The test execution layer is responsible for orchestrating execution (running suites, scheduling, collecting results, reporting), but not primarily for implementing the technology-specific SUT interaction itself. The test definition layer focuses on how tests are specified (scripts, keywords, models, data), and the test generation layer concerns deriving tests (e.g., model-based generation). Therefore, the layer containing technology-specific implementations enabling actual interaction with SUT interfaces is the test adaptation layer.