public void tc_61250_As_a_Domain_Administrator_I_want_to_view_list_of_system_events()
 {
     //CommonSection.Administer.System.EmailManagement.SystemEvents();
     //_test.Log(Status.Info, "Goto Administer > System >EmailManagement>System Events Page");
     Assert.IsTrue(Driver.Instance.Title.Equals("System Events"));
     Assert.IsTrue(SystemEventPage.isInstructionTextdisplay());
     _test.Log(Status.Pass, "Verify page opened with instructional text");
     SystemEventPage.AllTriggersDrowdown.select("360 Evaluations");
     Assert.IsTrue(SystemEventPage.EventTable.isEmailOpenswith("360 Evaluations"));
     _test.Log(Status.Pass, "Verify email associated with select options are open");
 }
 public void tc_61249_As_an_admin_I_want_to_view_list_of_system_events()
 {
     CommonSection.Administer.System.EmailManagement.SystemEvents();
     _test.Log(Status.Info, "Goto Administer > System >EmailManagement>System Events Page");
     Assert.IsTrue(Driver.Instance.Title.Equals("System Events"));
     Assert.IsTrue(SystemEventPage.isInstructionTextdisplay());
     _test.Log(Status.Pass, "Verify page opened with instructional text");
     Assert.IsTrue(SystemEventPage.EventTable.isCulumnPresent("Email Title", "Trigger", "Status", "Action", "Info"));
     _test.Log(Status.Pass, "Verify Table harareds are Email Title,Trigger,Status,Action,Info");
     Assert.IsTrue(SystemEventPage.ispagehasPagination());
     _test.Log(Status.Pass, "Verify page has pagination");
     SystemEventPage.EventTable.Trigger.ClickShowmore();
     _test.Log(Status.Info, "Click Showmoew link of trigger");
     Assert.IsTrue(SystemEventPage.EventTable.Trigger.istriggerdiscriptiondisplay());
     _test.Log(Status.Pass, "Verify is Trigger discription display");
 }