Sha256: af75d7111b6b26604e354876a3437e3037032c26f398dbbb91ccabc6ed0264df

Contents?: true

Size: 866 Bytes

Versions: 10

Compression:

Stored size: 866 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

10 entries across 10 versions & 1 rubygems

Version Path
RubyApp-0.0.55 features/elements/page.feature
RubyApp-0.0.54 features/elements/page.feature
RubyApp-0.0.53 features/elements/page.feature
RubyApp-0.0.52 features/elements/page.feature
RubyApp-0.0.51 features/elements/page.feature
RubyApp-0.0.50 features/elements/page.feature
RubyApp-0.0.49 features/elements/page.feature
RubyApp-0.0.48 features/elements/page.feature
RubyApp-0.0.47 features/elements/page.feature
RubyApp-0.0.46 features/elements/page.feature