4
我試圖在一個場景中使用多個標籤,但最終會打開每個標籤的窗口,這會在[AfterScenario]
步驟中導致問題。對於一個例子,我有一個場景:具有兩個標籤的Specflow場景打開兩個窗口
@Tag01 @Tag02
Scenario Outline: User Log In
Given I'm using the <ABC>
Given I Log in as AutomatedUser
Examples:
| ABC |
| SiteOne |
| SiteTwo |
而且我stepbase.cs文件方案之前:
[BeforeScenario("Tag01", "Tag02")]
public static void BeforeScenario()
{
StepBase.CreateBrowser(ConfigurationManager.AppSettings["BrowserType"]);
Console.WriteLine("selenium open Called");
}
有一種使用多個標籤,沒有它打開一個窗口,每個標籤的方法嗎?