Difference between Scenario and Scenario Outline? code example
Example: scenario vs scenario outline
SCENARIO OUTLINE :
basically replaces keywords with
the value from the table. Each row
in the table is a scenario.
| username | password |
| user1 | password1 |
| user2 | password2 |
SCENARIO :
Scenario is executed only once.