예제 #1
0
 public void EnterDate(DateTime Date)
 {
     Date_txtbx.EnterText(Date.ToShortDateString());
 }
예제 #2
0
 public void MakeAppointment(string Date, string Comments)
 {
     Date_txtbx.EnterText(Date);
     Comments_txtbx.EnterText(Comments);
     BookAppointment_btn.ClickOnElement();
 }