在AfterScenario的方法,我想從表「示例」中的行方案大綱中,它獲得的值,然後搜索數據庫如何獲取場景大綱示例表?
我知道,這可以通過使用Context.Scenario.Current
達到特定值...
Context.Scenario.Current[key]=value;
...但由於某些原因,我希望能夠得到它以更簡單的方式
這樣的:
ScenarioContext.Current.Examples();
-----------情景--------------------------------
Scenario Outline: Create a Matter
Given I create matter "<matterName>"
Examples:
| matterName |
| TAXABLE |
----------後臺-----------------------------------
[AfterScenario()]
public void After()
{
string table = ScenarioContext.Current.Examples();
}
什麼是你的問題? – 2014-10-20 07:56:41