Example #1
0
        public static void Setup()
        {
            var options = new ChromeOptions
            {
                PageLoadStrategy = PageLoadStrategy.Default
            };

            TestDriver = new ProgressSampleWebDriver(Browser.Chrome, options);

            SetupTestOutputFolder();

            Directory.SetCurrentDirectory(TestOutputFolder);
        }
 public static void Setup(TestContext testContext)
 {
     TestDriver = new ProgressSampleWebDriver(Browser.Firefox);
     Directory.SetCurrentDirectory(testContext.TestRunResultsDirectory);
 }
Example #3
0
 public static void Setup(TestContext testContext)
 {
     TestDriver = new ProgressSampleWebDriver(Browser.Chrome);
     //TestDriver.Manage().Window.Maximize();
     Directory.SetCurrentDirectory(testContext.TestRunResultsDirectory);
 }