InterviewSolution
Saved Bookmarks
| 1. |
Explain the high-level architecture of the robot framework. |
|
Answer» Robot Framework is a framework that is APPLICATION and technology agnostic. Its architecture is highly modular, as SHOWN in the diagram below: The test data is PRESENTED in a simple, editable tabular format. Robot Framework processes data, conduct test cases, and generates logs and reports when it is started. The CORE framework has no knowledge of the target under test, and libraries manage all interactions with it. Libraries can leverage lower-level test TOOLS as drivers or directly employ application interfaces. |
|