public void EnterDate(DateTime Date) { Date_txtbx.EnterText(Date.ToShortDateString()); }
public void MakeAppointment(string Date, string Comments) { Date_txtbx.EnterText(Date); Comments_txtbx.EnterText(Comments); BookAppointment_btn.ClickOnElement(); }