c#SpecFlow,如何从ScenarioContext(或其他测试上下文)中获取场景中的Example行索引

时间:2019-02-27 16:23:56

标签: c# automation specflow testcontext

在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    |

谢谢!

0 个答案:

没有答案