Sha256: 277eb8bd3a66552b52aabcd8318667fac4a8285077291993ff56a822f6225f02

Contents?: true

Size: 863 Bytes

Versions: 9

Compression:

Stored size: 863 Bytes

Contents

Feature: A page

  Scenario: Rendering a page
    Given I go to the test pages
    When I click "TestPage"
    Then I should see "Rendered"
    And I should see "Loaded"
    When I wait 4 seconds
    Then I should see "Triggered"
    Then I quit

  Scenario: Saving and retrieving a cookie
    Given I go to the test pages
    When I click "TestPage"
    Then I should see "Rendered"
    When I fill in the "Enter a new cookie value" field with "value" and I press enter
    Then I should see "The cookie value is 'value'."
    Then I click "Close"
    Then I quit
    When I go to the test pages
    And I click "TestPage"
    Then I should see "The cookie value is 'value'."
    Then I quit

  Scenario Outline: Loading the home page
    Given I am viewing "/"
    And I should see "Loaded"

    Scenarios: Count
      | count |
      | X     |
      | X     |

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
RubyApp-0.0.45 features/elements/page.feature
RubyApp-0.0.44 features/elements/page.feature
RubyApp-0.0.43 features/elements/page.feature
RubyApp-0.0.42 features/elements/page.feature
RubyApp-0.0.41 features/elements/page.feature
RubyApp-0.0.30 features/elements/page.feature
RubyApp-0.0.29 features/elements/page.feature
RubyApp-0.0.28 features/elements/page.feature
RubyApp-0.0.27 features/elements/page.feature