public void PretendTestNumber2()
        {
            var sampleApplicationPage = new SampleApplicationPage(Driver);

            sampleApplicationPage.GoTo();
            var ultimateQAHomePage = sampleApplicationPage.FillOutFormAndSubmit(TheTestUser);

            Assert.IsFalse(!ultimateQAHomePage.IsVisible, "UltimateQA home page was not visible.");
        }
        public void Test3()
        {
            TheTestUser.GenderType = Gender.Other;
            var sampleApplicationPage = new SampleApplicationPage(Driver);

            sampleApplicationPage.GoTo();
            var ultimateQAHomePage = sampleApplicationPage.FillOutFormAndSubmit(TheTestUser);

            Assert.IsFalse(!ultimateQAHomePage.IsVisible, "UltimateQA home page was not visible.");
        }
        public void TestMethod1()
        {
            Driver = GetChromeDriver();
            var sampleApplicationPage = new SampleApplicationPage(Driver);

            sampleApplicationPage.GoTo();
            Assert.IsTrue(sampleApplicationPage.IsVisible);

            var ultimateQAHomePage = sampleApplicationPage.FillOutFormAndSubmit("Peri");

            Assert.IsTrue(ultimateQAHomePage.IsVisible);
        }