/// <summary>
        /// Disallow users to filter by calendars
        /// </summary>
        public void ClickAllowUsersToFilterByCalendars()
        {
            HtmlInputCheckBox allowUsersToFilterByCalendars = this.EM.Widgets.WidgetDesignerCalendarScreen.AllowUsersToFilterByCalendars
                                                              .AssertIsPresent("Allow users to filter by calendars");

            allowUsersToFilterByCalendars.Focus();
            allowUsersToFilterByCalendars.MouseClick();
        }
        /// <summary>
        /// Adds the other choice.
        /// </summary>
        public void AddOtherChoice()
        {
            HtmlInputCheckBox otherChoice = EM.Forms.FormsBackend.OtherChoice
                                            .AssertIsPresent("Other choice Link");

            otherChoice.ScrollToVisible();
            otherChoice.Focus();
            otherChoice.MouseClick();
        }