Exemplo n.º 1
0
        public static string getcheckBoxText()
        {
            DynamicControls dcPage = new DynamicControls();

            String SuccessmsgText = dcPage.checkboxMessage.Text.TrimEnd();

            //securearea.LogOutButton.Click();
            return(SuccessmsgText);
        }
Exemplo n.º 2
0
        public static bool IsEnableTextBoxtrue()
        {
            DynamicControls dcPage = new DynamicControls();

            if (dcPage.EnableDisableTextBox.Enabled == true)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 3
0
        public static bool IschkBoxDisplaytrue()
        {
            DynamicControls dcPage = new DynamicControls();

            if (dcPage.CheckBox.Displayed == true)
            {
                return(true);
            }
            else
            {
                return(false);
            }
        }
Exemplo n.º 4
0
        public static void ClickOnEnableDisableButton()
        {
            DynamicControls dcPage = new DynamicControls();

            dcPage.EnableDisableButton.Click();
        }
Exemplo n.º 5
0
        public static void checkBoxActions()
        {
            DynamicControls dcPage = new DynamicControls();

            dcPage.RemoveButton.Click();
        }