public void TC_ConvertToEnglish()
        {
            Page_Settings myinf = new Page_Settings();

            myinf.ConvertToEnglish();
            System.Threading.Thread.Sleep(3000);
        }
Exemplo n.º 2
0
        public void TC_VerifyUpdatedData()
        {
            Page_Settings myinf = new Page_Settings(softassertions);

            myinf.VerifyUpdatedInformation();
            is_soft_assert = true;
            softassertions.AssertAll();
        }
Exemplo n.º 3
0
        public void TC_VerifyErrorMessages()
        {
            Page_Settings myinf = new Page_Settings(softassertions);

            myinf.VerifyMyInformationSetting();
            is_soft_assert = true;
            softassertions.AssertAll();
        }
        public void TC_VerifySpanishSettings()
        {
            Page_Login plogin = new Page_Login();

            plogin.Login();
            Page_HAPrompt haprompt = new Page_HAPrompt();

            haprompt.GoToDashboard();
            Console.WriteLine("Navigating to Settings");
            Common settings = new Common();

            settings.GoToSettings();
            Page_Settings myinf = new Page_Settings(softassertions);

            myinf.ConvertToSpanish();
            is_soft_assert = true;
            softassertions.AssertAll();
        }
Exemplo n.º 5
0
        public void TC_Settings()
        {
            SeleniumKeywords.RefreshPage();
            System.Threading.Thread.Sleep(3000);

            Common settings = new Common();

            settings.GoToSettings();
            Page_Settings myinf = new Page_Settings(softassertions);

            myinf.VerifyMyProfileErrors();
            is_soft_assert = true;
            softassertions.AssertAll();
            Setting set = new Setting();

            set.TC_VerifyMyProfileData();
            set.TC_VerifyErrorMessages();
            set.TC_VerifyUpdatedData();
        }
Exemplo n.º 6
0
        public void TC_VerifyMyProfErrorMessages()
        {
            //To call the Page Login Method
            Page_Login plogin = new Page_Login();

            plogin.Login();
            Page_HAPrompt haprompt = new Page_HAPrompt();

            haprompt.GoToDashboard();
            Console.WriteLine("Navigating to Settings");
            Common settings = new Common();

            settings.GoToSettings();
            Page_Settings myinf = new Page_Settings(softassertions);

            myinf.VerifyMyProfileErrors();
            is_soft_assert = true;
            softassertions.AssertAll();
        }
Exemplo n.º 7
0
        //[Category("ProdSanity")]
        //[Category("Regression")]
        public void TC_ConvertToEnglish()
        {
            Common settings = new Common();

            settings.GoToSettings();
            Page_Settings myinf = new Page_Settings();

            myinf.ConvertToEnglish();

            Common cmn = new Common();

            cmn.ClickConnectionsMenu();

            //// Verify english HIPPA
            cn.VerifyHippaInEnglish();
            softassertions.AssertAll();

            //// Accept HIPPA
            cn.AcceptHippa();
        }