Ejemplo n.º 1
0
        /// <summary>
        /// Click option Allow users to step backward.
        /// </summary>
        public void ClickAllowUsersToStepBackwardCheckBox()
        {
            HtmlInputCheckBox checkbox = this.EM.Forms.FormsBackend.AllowUsersToStepBackwardCheckBox.AssertIsPresent("Next step button");

            checkbox.AssertIsPresent("checked");
            checkbox.Click();
        }
        /// <summary>
        /// Check required field checkbox.
        /// </summary>
        public void CheckRequiredFieldCheckbox()
        {
            HtmlInputCheckBox checkbox = this.EM.Forms.FormsBackend.RequiredFieldCheckBox.AssertIsPresent("Required field");

            checkbox.Click();
            checkbox.AssertIsPresent("checked");
        }
        /// <summary>
        /// Check Calendar check box
        /// </summary>
        public void SelectFilterByCalendar()
        {
            HtmlInputCheckBox calendarCheckBox = this.EM.Widgets.WidgetDesignerCalendarScreen.CalendarCheckBox;

            calendarCheckBox.AssertIsPresent("Calendar checkbox");
            calendarCheckBox.Click();
        }