Пример #1
0
        public void Setup()
        {
            if (!IISExpressTestManager.IsIISExpressRunning())
            {
                throw new Exception("IIS Express must be running for this test to work");
            }

            _browser = new ChromeDriver();

            GoToHomePage();
        }
 public static void AfterFeature()
 {
     Browser.Quit();
     IISExpressTestManager.StopIISExpress();
 }
 public static void BeforeFeature()
 {
     IISExpressTestManager.StartIISExpress();
 }
Пример #4
0
 public static void AfterFeature()
 {
     IISExpressTestManager.StopIISExpress();
 }