예제 #1
0
 public static void AfterAuthenticationFeatuer()
 {
     if (TestContext.CurrentContext.Result.Outcome.Status == TestStatus.Failed)
     {
         var screenshot = ((ITakesScreenshot)DriverConnections.Browser).GetScreenshot();
         var filename   = TestContext.CurrentContext.Test.Name + "_screenshot_" + DateTime.Now.Ticks + ".Png";
         var path       = Path.Combine(TestContext.CurrentContext.WorkDirectory, filename);
         screenshot.SaveAsFile(path, ScreenshotImageFormat.Png);
         TestContext.AddTestAttachment(path);
     }
     DriverConnections.StopBrowser();
 }
예제 #2
0
 public void BrowserTearDown()
 {
     DriverConnections.StopBrowser();
 }
예제 #3
0
 public static void AfterAuthenticationScenario()
 {
     DriverConnections.StopBrowser();
 }