Example #1
0
        public XUnitTestBase()
        {
            VaftContext = new VaftTestContext
            {
                ClassName = "NoneAvailable"
            };

            VaftLog         = VaftLogInitializer.Run();
            Config.Settings = new ConfigurationSettings();
            //RunBeforeBrowserOpens();
            LaunchWebBrowser();
        }
Example #2
0
        public void SetUpWebDriver()
        {
            VaftContext = new VaftTestContext
            {
                ClassName  = TestContext.FullyQualifiedTestClassName,
                MethodName = TestContext.TestName
            };

            VaftLog         = VaftLogInitializer.Run();
            Config.Settings = new ConfigurationSettings();
            RunBeforeBrowserOpens();
            LaunchWebBrowser();
        }
Example #3
0
        public void SetUpWebDriver()
        {
            VaftContext = new VaftTestContext
            {
                ClassName = TestContext.CurrentContext.Test.Name
            };

            VaftLog = VaftLogInitializer.Run();
            Log.Debug("----- TEST STARTED -----");

            Config.Settings = new ConfigurationSettings();
            RunBeforeBrowserOpens();
            LaunchWebBrowser();
        }