Sha256: 9f24f0eb69affbc86bedc62cd0cf396e7197e37c92e3111b5f17f7ca4ae231b9

Contents?: true

Size: 1.9 KB

Versions: 29

Compression:

Stored size: 1.9 KB

Contents

Feature: Dialog Test Page

  Scenario: Show a confirmation dialog
    Given I go to the test pages
    When I click "DialogTestPage"
    And I click "ConfirmationDialog"
    Then I should see "Confirmation Dialog"
    And I should see "Are you sure?"
    When I click "Yes"
    Then I should not see "Confirmation Dialog"
    And I should not see "Are you sure?"
    And I should see "You clicked"
    And I should see "true"
    Then I click "Close"
    Then I quit

  Scenario: Show an exception dialog
    Given I go to the test pages
    When I click "DialogTestPage"
    And I click "ExceptionDialog"
    Then I should see "RuntimeError"
    And I should see "Exception dialog"
    When I click "Close"
    Then I should not see "RuntimeError"
    And I should not see "Exception dialog"
    Then I quit

  Scenario: Show a message dialog
    Given I go to the test pages
    When I click "DialogTestPage"
    And I click "MessageDialog"
    Then I should see "Message Dialog"
    And I should see "This is a Message Dialog"
    When I click "Close"
    Then I should not see "Message Dialog"
    And I should not see "This is a Message Dialog"
    Then I quit

  Scenario: Show a calendar month dialog
    Given I go to the test pages
    When I click "DialogTestPage"
    And I click "MonthDialog"
    And I click "15"
    Then I should see "You clicked"
    And I should see "15/"
    When I click "Close"
    Then I should not see "15/"
    And I should see "-15"
    Then I quit

  Scenario: Show an acknowledgement dialog
    Given I go to the test pages
    When I click "DialogTestPage"
    And I click "AcknowledgementDialog"
    Then I should see "Acknowledgement Dialog"
    And I should see "This will happen."
    When I click "OK"
    Then I should not see "Acknowledgement Dialog"
    And I should not see "This will happen."
    And I should see "You clicked"
    And I should see "true"
    Then I click "Close"
    Then I quit

Version data entries

29 entries across 29 versions & 1 rubygems

Version Path
RubyApp-0.2.7 features/elements/dialog.feature
RubyApp-0.2.6 features/elements/dialog.feature
RubyApp-0.2.5 features/elements/dialog.feature
RubyApp-0.2.4 features/elements/dialog.feature
RubyApp-0.2.3 features/elements/dialog.feature
RubyApp-0.2.2 features/elements/dialog.feature
RubyApp-0.2.1 features/elements/dialog.feature
RubyApp-0.2.0 features/elements/dialog.feature
RubyApp-0.0.91 features/elements/dialog.feature
RubyApp-0.0.90 features/elements/dialog.feature
RubyApp-0.0.89 features/elements/dialog.feature
RubyApp-0.0.88 features/elements/dialog.feature
RubyApp-0.0.87 features/elements/dialog.feature
RubyApp-0.0.86 features/elements/dialog.feature
RubyApp-0.0.85 features/elements/dialog.feature
RubyApp-0.0.84 features/elements/dialog.feature
RubyApp-0.0.83 features/elements/dialog.feature
RubyApp-0.0.82 features/elements/dialog.feature
RubyApp-0.0.81 features/elements/dialog.feature
RubyApp-0.0.80 features/elements/dialog.feature