//delete new anamneza app
 public void DeleteNewAnamanezaApplication()
 {
     DeleteAnamneza.ClickOn();
     ConfirmDelete.ClickOn();
     softAssert.VerifyElementHasEqual(utility.TableCount(anamnezaTableCount), Constant.tmpTableCount);
     CloseAnamnezaTable.ClickOn();
 }
 //delete note
 public void DeleteNoteApplication()
 {
     DeleteNote.ClickOn();
     softAssert.VerifyElementIsPresent(ConfirmDelete);
     ConfirmDelete.ClickOn();
     CloseNotesTable.ClickOn();
     softAssert.VerifyElementHasEqualInsideWindow(utility.TableCount(noteTableCount), Constant.tmpTableCount, CloseNotesTable);
 }
 //delete medicine
 public void DeleteMedicineApplication()
 {
     if (DeleteMedicine.IsDisplayed("delete medicine"))
     {
         DeleteMedicine.ClickOn();
         softAssert.VerifyElementIsPresent(ConfirmDelete);
         ConfirmDelete.ClickOn();
         SaveMedicineTable.ClickOn();
     }
     else
     {
         CancelMedicineTable.ClickOn();
     }
 }