Reputation: 1175
I have same simple testcase, I want to use this testcases as keywords. For example:
*** Test Cases ***
User Can Add Iteam To Bucket
same keywords
User Can Perform Checkout Bucket
User Can Add Iteam To Bucket
User Can do samething else
Upvotes: 0
Views: 78
Reputation: 385970
You cannot run a test case from another test case.
The solution is to make User Can Add Iteam To Bucket
into a keyword that you can call from multiple places.
Upvotes: 1