In this question scenario.getName was used to the name of the scenario. I need to get the name in addition to the parameters. For example if scenario is :
Scenario Outline: name of scenario
Given I am on the proper page
When I apply <filter> with <params>
And I click filter
Then the data should be filtered
Examples:
| filter | params |
| Date | Today |
| Name | Some Name |
I want to get nameOfScenario(Date,Today).
Also I am using C# not java
UPDATE
I know when I open test cases with NUnit they show as nameOfScenario(Date,Today)
. Any ideas how Nunit does it?