The Scenario Outline keyword can be used to run the same scenario multiple times, with different combinations of values.
Feature: Animal feature
ScenarioOutline: If we feed a hungry animal it will no longer be hungry
Given a hungry <animal>When I feed the <animal><n> times
Then the <animal> is not hungry
Examples:
| animal | n |
| cat | 2 |
| dog | 3 |
| 🦀 | 4 |
At parsing stage <template>s are replaced by value from cells, so we may get that value in step matching functions (if we need though).