Exemplo n.º 1
0
 public void Delete()
 {
     if (_deleteButton.IsExist())
     {
         _deleteButton.ClickByJS();
         Wait.WaitForAjaxReady(SimsBy.CssSelector(".locking-mask"));
         var confirmDialog = new DeleteConfirmationPage();
         confirmDialog.ConfirmDelete();
     }
 }
Exemplo n.º 2
0
 public SchoolIntakePage CancelDeleteSchoolIntake()
 {
     if (_deleteButton.IsExist())
     {
         _deleteButton.ClickByJS();
         Wait.WaitForAjaxReady(SimsBy.CssSelector(".locking-mask"));
         var confirmDialog = new DeleteConfirmationPage();
         confirmDialog.CancelDelete();
     }
     return(new SchoolIntakePage());
 }