public void DecomServAcnt()
        {
            common.smallwait();
            ManageServiceAccount_OperationPage objOperation = new ManageServiceAccount_OperationPage();

            common.Perform(objOperation.btnYes, "click", "");
        }
        public void ResetPassword(string password)
        {
            common.smallwait();
            ManageServiceAccount_OperationPage objOperation = new ManageServiceAccount_OperationPage();

            common.Perform(objOperation.txtPassword, "sendkeys", password);
            common.Perform(objOperation.txtConfirmPassword, "sendkeys", password);
            common.Perform(objOperation.btnYes, "click", "");
        }
        public void SelectServiceAccountAndOperation(string servaccnt, string operation)
        {
            common.smallwait();
            ManageServiceAccount_OperationPage objOperation = new ManageServiceAccount_OperationPage();

            common.Perform(objOperation.txtServiceAccount, "sendkeys", servaccnt);
            common.Perform(objOperation.txtOperation, "sendkeys", operation);
            common.Perform(objOperation.lblPageHead, "click", "");
        }