Sha256: 63a8366f3c82c747d8bb2dcf3994a4637fb4ca09e799bceede95d69bbac46d0a

Contents?: true

Size: 1.55 KB

Versions: 14

Compression:

Stored size: 1.55 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"
    Then I should see "Wed"
    When I click "15"
    Then I should not see "Wed"
    And I should see "You clicked"
    And I should see "15/"
    When I click "Close"
    Then I should not see "You clicked"
    And I should not see "15/"
    And I should see "-15"
    Then I quit

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
RubyApp-0.0.60 features/elements/dialog.feature
RubyApp-0.0.59 features/elements/dialog.feature
RubyApp-0.0.58 features/elements/dialog.feature
RubyApp-0.0.57 features/elements/dialog.feature
RubyApp-0.0.56 features/elements/dialog.feature
RubyApp-0.0.55 features/elements/dialog.feature
RubyApp-0.0.54 features/elements/dialog.feature
RubyApp-0.0.53 features/elements/dialog.feature
RubyApp-0.0.52 features/elements/dialog.feature
RubyApp-0.0.51 features/elements/dialog.feature
RubyApp-0.0.50 features/elements/dialog.feature
RubyApp-0.0.49 features/elements/dialog.feature
RubyApp-0.0.48 features/elements/dialog.feature
RubyApp-0.0.47 features/elements/dialog.feature