Hi,
I was wondering if there was any way to parametrize the features file, something like, having this scenario outline:
Given I open <URL>
When I click <button>
Then I should see <result>
| URL | button | result |
| urlA | buttonA | resultA |
| urlB | buttonB | resultB |
| urlC | buttonC | resultC |
| urlD | buttonD | resultD |
| urlE | buttonE | resultE |
Being able to say "run this ONLY for urlA/buttonA/resultA" or maybe for A and D, on execution time... maybe with a command line parameter?
Please let me know if I'm not clear enough.
Cheers!