Bartłomiej Bartnicki
Bartłomiej Bartnicki

Reputation: 1175

Call TestCase as Keyword in other TC

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

Answers (1)

Bryan Oakley
Bryan Oakley

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

Related Questions