public void MC08_Appointment_Recurring_Weekly_3days_Every_2Weeks_5NOO()
        {
            LeftNavigation.Calendar.MyCalendar.GoTo();
            Driver.Wait(TimeSpan.FromSeconds(5));
            MyCalendarPage cal  = new MyCalendarPage();
            var            test = cal.test = extent.StartTest("MC08 - Appointment Recurring Weekly After No. of Occurences", "Appointment Recurring Weekdly added from My Calendar After a No. of Occurences");

            cal.AddAppointmentButton();
            Driver.Wait(TimeSpan.FromSeconds(2));
            cal.Search_Existing_Patient("Stephanie Ingle");
            cal.Appointment_Complaint("Complaint 8");
            cal.Appointment_PractitionerNotes("Note 8");
            cal.Appointment_Type("Insurance");
            cal.Appointment_Date_and_Time("07/10/2018", "15:00:00");
            cal.Appointment_Location("Chief Grand Cherokee Wellness Center");
            cal.Appointment_Service("Bear Massage");
            cal.Appointment_Room("Room #1-4");
            cal.Reoccur();;
            cal.RepeatsEvery("2");
            cal.Mark_Tuesday();
            cal.Mark_Friday();
            cal.Mark_Sunday();
            cal.AfterNumberOfOccuresces("5");
            cal.Appointment_Save();
            extent.EndTest(test);
            extent.Flush();
        }
        public void MC21_Timeoff_Recurring_Weekly_Every_2Week_5NOO()
        {
            LeftNavigation.Calendar.MyCalendar.GoTo();
            Driver.Wait(TimeSpan.FromSeconds(5));
            MyCalendarPage timeoff = new MyCalendarPage();
            var            test    = timeoff.test = extent.StartTest("MC21 - Timeoff Recurring Weekly every 2 weeks after 5 occurences", "Timeoff Recurring Weekly added from My Calendar after 5 number of occurences");

            timeoff.Book_TimeOff_Button();
            timeoff.Timeofftitle("Test 11");
            timeoff.TimeoffDetails("Test Details 11");
            timeoff.TimeoffRepeat();
            timeoff.Repeats("Weekly");
            timeoff.RepeatsEvery("2");;
            timeoff.Mark_Tuesday();
            timeoff.Mark_Friday();
            timeoff.Timeoff_StartDate_and_Time("07/11/2018", "07:00:00", "60");
            timeoff.AfterNumberOfOccuresces("5");
            timeoff.TimeoffLocation("Ciuc Wellness");
            timeoff.TimeoffSave();
            extent.EndTest(test);
            extent.Flush();
        }