I have scenarios with a few rows of examples
e.g.
Scenario: My scenario
Given My pre requirements
When I do something passing <parameter>
Then I verify my test passes
Examples:
| parameter |
| param1 |
| param2 |
I know that @before.each_scenario will be executed before each scenario is run. But if I want to run a method before a scenario is executed for each row of examples, is there any support for that in lettuce or is there any other way that people deal with this?