Ejemplo n.º 1
0
 public void Primary_contact(string primary_contact)
 {
     SetMethods.Select_Value_from_List(Primary_Contact, Select_Primary_Contact, primary_contact);
 }
Ejemplo n.º 2
0
 public void PatientGender(string gender)
 {
     try { SetMethods.Select_Value_from_List(Gender, genderlist, gender);
           test.Log(LogStatus.Pass, "Gender is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Gender is not selected", e); }
 }
Ejemplo n.º 3
0
 public void Contact_Country(string country)
 {
     SetMethods.Select_Value_from_List(Country, CountryList, country);
 }
Ejemplo n.º 4
0
 public void State_(string state)
 {
     SetMethods.Select_Value_from_List(State, StateList, state);
 }
Ejemplo n.º 5
0
 public void Appointment_Room(string room)
 {
     try { SetMethods.Select_Value_from_List(Room, RoomList, room);
           test.Log(LogStatus.Pass, "Appointment Room is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Appointment Room is not selected", e); }
 }
Ejemplo n.º 6
0
 public void Repeats(string daily)
 {
     try { SetMethods.Select_Value_from_List(RepeatsValue, RepeatsList, daily);
           test.Log(LogStatus.Pass, "Repeats is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, " Repeats is not selected", e); }
 }
 public void Set_Service_Type(string Service)
 {
     SetMethods.Select_Value_from_List(service, set_Service, Service);
 }
Ejemplo n.º 8
0
 public void Appointment_Location(string location)
 {
     try { SetMethods.Select_Value_from_List(Location, LocationList, location);
           test.Log(LogStatus.Pass, "Appointment Location is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Appointment Location is not selected", e); }
 }
 public void Set_location(string location)
 {
     SetMethods.Select_Value_from_List(locatioN, set_location, location);
 }
 public void Set_Practitioner(string Practitioner)
 {
     SetMethods.Select_Value_from_List(practitioner, set_Practitioner, Practitioner);
 }
 public void Set_Timeoff_for_Practitioner(string Practitioner)
 {
     SetMethods.Select_Value_from_List(timeoff_practitioner, select_timeoff_practitioner, Practitioner);
 }
 public void Appointment_Practitioner(string Practitioner)
 {
     try { SetMethods.Select_Value_from_List(practitioner, select_practitioner, Practitioner);
           test.Log(LogStatus.Pass, "Appointment Practitioner is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Appointment Practitioner is not selected", e); }
 }
Ejemplo n.º 13
0
 public void Facility_Code(string facilityCode)
 {
     SetMethods.Select_Value_from_List(FacilityCode, FacilityCodeList, facilityCode);
 }
Ejemplo n.º 14
0
 public void PatientSecondaryPhoneType(string SecondaryPhoneType)
 {
     try { SetMethods.Select_Value_from_List(Secondary_Phone_Type, SecondaryPhoneTypeList, SecondaryPhoneType);
           test.Log(LogStatus.Pass, "Secondary Phone Type is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Secondary Phone Type is not selected", e); }
 }
 public void SelectGender(string gender)
 {
     SetMethods.Select_Value_from_List(Gender, select_gender, gender);
 }
Ejemplo n.º 16
0
 public void Appointment_Type(string appointmentType)
 {
     try { SetMethods.Select_Value_from_List(AppointmentType, AppointmentTypeList, appointmentType);
           test.Log(LogStatus.Pass, "Appointment Type is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Appointment Type is not selected", e); }
 }
 public void Select_Primary_Phone_Type(string PrimaryPhoneType)
 {
     SetMethods.Select_Value_from_List(Primary_Phone_Type, select_Primary_Phone_Type, PrimaryPhoneType);
 }
Ejemplo n.º 18
0
 public void Appointment_Service(string service)
 {
     try { SetMethods.Select_Value_from_List(ServiceType, ServiceTypeList, service);
           test.Log(LogStatus.Pass, "Appointment Service is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Appointment Service is not selected", e); }
 }
 public void Select_Second_Phone_Type(string SecondaryPhoneType)
 {
     SetMethods.Select_Value_from_List(Secondary_Phone_Type, select_Secondary_Phone_Type, SecondaryPhoneType);
 }
Ejemplo n.º 20
0
 public void TimeoffLocation(string location)
 {
     try { SetMethods.Select_Value_from_List(Location, LocationbooktimeoffList, location);
           test.Log(LogStatus.Pass, "Timeoff Location is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Timeoff Location is not selected", e); }
 }
Ejemplo n.º 21
0
 public void Country_(string country)
 {
     Driver.Wait(TimeSpan.FromSeconds(10));
     SetMethods.Select_Value_from_List(Country, CountryList, country);
     Driver.Wait(TimeSpan.FromSeconds(10));
 }
Ejemplo n.º 22
0
 public void RepeatsEvery(string numberofdays)
 {
     try { SetMethods.Select_Value_from_List(Repeatevery, RepeateveryList, numberofdays);
           test.Log(LogStatus.Pass, "Repeats every is selected"); }
     catch (Exception e) { test.Log(LogStatus.Fail, "Repeats every is not selected", e); }
 }
Ejemplo n.º 23
0
 public void Location_Timezone(string timezone)
 {
     SetMethods.Select_Value_from_List(TimeZone, TimeZoneList, timezone);
 }