public static Boolean AppointmentScheduleProcess(string sDate, string patientID, string doctorID,
                                                         string observations)
        {
            HomeView homeView = new HomeView(driver);
            AppointmentSchedulingView appointmentSchedulingView = new AppointmentSchedulingView(driver);

            homeView.AccesToAppointmentSchedule();
            appointmentSchedulingView.FillformDate(sDate, patientID, doctorID, observations);
            return(true);
        }