예제 #1
0
        public void SetupForEverySingleTestMethod()
        {
            Reporter.StartReporter();
            Logger.Debug("*************************************** TEST STARTED");
            Logger.Debug("*************************************** TEST STARTED");
            Reporter.AddTestCaseMetadataToHtmlReport(TestContext.CurrentContext);
            var factory = new WebDriverFactory();

            Driver = factory.Create(BrowserType.Chrome);
            Driver.Manage().Window.Maximize();
            ScreenshotTaker = new ScreenshotTaker(Driver, TestContext);
        }
예제 #2
0
 public static void ExecuteForCreatingReportsNamespace(TestContext testContext)
 {
     Reporter.StartReporter();
 }