我们如何在步骤定义中检索/获取功能、场景标题和标签名称?
例如,我有一个带有功能的功能文件 booksearch:
Feature: Book Search
Scenario: Title should be matched
I perform a simple search on 'abc'
------------------------
------------------------
[When(@"I perform a simple search on '(.*)'")]
public void WhenIPerformASimpleSearchOn(string searchTerm)
{
--------
----------
//custom log
WriteLogs(int stepNum,string scenarioName,string tagname,string stepDescription,string stepResult)
}
我们如何在给定场景的步骤定义中检索/获取功能和场景标题和标签名称?
我们使用 MSTest 作为单元测试提供者。