I want to pass multiple arguments to my TEST CASE in the most "elegant" way possible in Robot Framework. Scenario outline used in many framework allows to replace variable/keywords with the value from the table. Each row in the table is considered to be a scenario.
Is there any equivalent for scenario outline in Robot Framework?
For example we have test case like this:
Given users email is ${email}
And users password is ${password}
When user is on login page
Then user can sign in
And we want to pass multiple emails and passwords to this test case as an array for example and run as many times as there is rows in this array. Can I do that without converting test case to a keyword to use templates?