public void Search()
        {
            CommonSection.ClickSearchIcon();
            _test.Log(Status.Info, "Clicked on Search icon present in top bar");
            CommonSection.MobileCatalogSearchText("Test");
            _test.Log(Status.Info, "Test searched successfully from Catalog search");
            Assert.IsTrue(SearchResultsPage.CheckSearchRecord("Test") >= 1); //chcks the records are not zero
            _test.Log(Status.Pass, "search record is greater than 1");       //CommonSection.Manage.People();

            CommonSection.ClickToggleNevigationIcon();
            _test.Log(Status.Info, "Taped Responsive Menu Icon on Top Nevigation Bar");
            CommonSection.Manage.People_Mobile();
            _test.Log(Status.Info, "open people page from common section on mobile web ");
            ManageUsersPage.SearchUser("");
            _test.Log(Status.Info, "blank search takes place from manage users page");
            Assert.IsTrue(ManageUsersPage.DisplaysUserlist >= 1);//checks people search is working
            _test.Log(Status.Pass, "search record is greater than 1");

            CommonSection.ClickToggleNevigationIcon();
            _test.Log(Status.Info, "Taped Responsive Menu Icon on Top Nevigation Bar");
            CommonSection.Manage.Catalog_Mobile();
            _test.Log(Status.Info, "open Catalog page from common section on mobile web ");
            CatalogPage.SearchContent_OnMobile("test");
            Assert.IsTrue(SearchResultsPage.CheckSearchRecord("Test") >= 1);//chcks the records are not zero
            _test.Log(Status.Pass, "search record is greater than 1");
        }
 public void Help()
 {
     CommonSection.ClickToggleNevigationIcon();
     _test.Log(Status.Info, "Taped Responsive Menu Icon on Top Nevigation Bar");
     CommonSection.ToggledResponsiveMenus.ClickHelp();
     _test.Log(Status.Info, "Taped help Link from Toggled menus");
     //CommonSection.ClickHelpIcon();
     //_test.Log(Status.Pass, "help icon opens successfully");
     Assert.IsTrue(HelpPage.CheckTitle());//checks the Help page with one click in it
     _test.Log(Status.Pass, "help page opens successfully");
 }
        public void Administration()
        {
            CommonSection.ClickToggleNevigationIcon();
            _test.Log(Status.Info, "Taped Responsive Menu Icon on Top Nevigation Bar");
            CommonSection.Administer.People.Organizations_Mobile();
            _test.Log(Status.Info, "Organization page opens");
            OrganizationsPage.ClickSearch();
            _test.Log(Status.Info, "Done Blank search");
            Assert.IsTrue(OrganizationsPage.DisplaySearchRecords > 1);//checks Organization search is working

            CommonSection.ClickToggleNevigationIcon();
            _test.Log(Status.Info, "Taped Responsive Menu Icon on Top Nevigation Bar");
            CommonSection.Manage.Careers_Mobile();
            _test.Log(Status.Info, "open Careers page from common section on mobile web ");
            CareersPage.ClickJobTitleTab_Mobile();
            _test.Log(Status.Info, "Opened JobTitle tab on Careers page");
            CareersPage.JobTitleKI.SearchJobtitle("");
            _test.Log(Status.Info, "did blank search in job tiltle");
            Assert.IsTrue(CareersPage.JobTitleKI.DisplaySearchRecords >= 1);

            //CommonSection.Administer.System.BrandingAndCustomization.HomepageCustomization();
            //_test.Log(Status.Info, "opened home customization page");
            //Assert.IsTrue(HomePage.Title == "Home");// just checks the title
        }