在c#SpecFlow中,例如在AfterScenario方法中,我可以将场景标题获得为ScenarioContext.Current.ScenarioInfo.Title
如果该场景包含许多示例(就Gherkin功能文件而言),并且我想获取Example上下文,那么让我们在示例列表中说一下它的索引。我如何找到它?我必须在测试开始时进行设置吗?如果是,如何以及在何处?
这是一个小黄瓜场景的示例:
Scenario Outline: a scenario
Given The user '<UserName>'
When He opens the
Then The he should
Examples:
| UserName |
| user1 |
| user2 |
谢谢!