Example #1
0
        public void LDAP()
        {
            _Child = _Parent.CreateNode("LDAP");

            LDAP ldapPage = new LDAP();

            try
            {
                Assert.IsTrue(true);
                _Child.Pass("Called LDAP Class and Create Object");
            }
            catch (AssertionException)
            {
                _Child.Fail("Failed to Called LDAP Class and Create Object");
                throw;
            }

            ldapPage.ldapSecurityRealm();
            try
            {
                Assert.IsTrue(true);
                _Child.Pass("Click on Security Realm");
            }
            catch (AssertionException)
            {
                _Child.Fail("Failed to Click on Security Realm");
                throw;
            }

            ldapPage.ldapConfigSettings();
            try
            {
                Assert.IsTrue(true);
                _Child.Pass("Click on LDAP Configuration settings");
            }
            catch (AssertionException)
            {
                _Child.Fail("Failed to Click on LDAP Configuration settings");
                throw;
            }
            //BeforeTest();
            //HP_ePrint();
        }