In Robot Framework, we aim to create test cases that are easy to understand for people. This is one of the fundamental principles of Robot Framework.
Currently, test cases have a complex syntax that can be difficult to understand and resembles the syntax of programming languages rather than a simple set of instructions to be executed.
We need to create additional keywords to cover some complex types of operations or sets of steps within test cases.
Structure:
One of the solution to this problem would be to create a new resource file that would store new keywords that are somehow univeral for one of the RFSwarm components, and to store keywords specific to a given test case in the robot file under the *** Keywords *** section.
In Robot Framework, we aim to create test cases that are easy to understand for people. This is one of the fundamental principles of Robot Framework.
Currently, test cases have a complex syntax that can be difficult to understand and resembles the syntax of programming languages rather than a simple set of instructions to be executed.
We need to create additional keywords to cover some complex types of operations or sets of steps within test cases.
Structure:
One of the solution to this problem would be to create a new resource file that would store new keywords that are somehow univeral for one of the RFSwarm components, and to store keywords specific to a given test case in the robot file under the
*** Keywords ***section.