//Workaround to resolve issue with AddClientCase EndDate DatePicker (Checked datepickers block text entry)
        public In_EditCarePlan_CompleteEditRevision(Application application)
        {
            WindowTools   windowTools  = new WindowTools();
            UtilityTools  utilityTools = new UtilityTools();
            List <Window> windows      = windowTools.GetWindows(application);

            Window         window  = windowTools.GetWindow(windows, "EditCarePlanRevision");
            DateTimePicker endDate = windowTools.GetDateTimePicker(window, SearchCriteria.ByAutomationId("endDate"));

            endDate.Enter("11112020");

            utilityTools.DebugWindowItems(window);

            Button okButton = windowTools.GetButton(window, "OK");

            okButton.DoubleClick();
        }