Sha256: 15e79ce8e9a4e9356ece5ac593359120d08494525c23a58b7d8460c611e61a42

Contents?: true

Size: 877 Bytes

Versions: 16

Compression:

Stored size: 877 Bytes

Contents

Feature: Form

  Background:
    Given I am on the static elements page

  Scenario: Submitting a form
    When I locate the form by "id"
    Then I should be able to submit the form

  Scenario Outline: Locating a form on the page
    When I locate the form by "<search_by>"
    Then I should be able to submit the form

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | xpath     |
    | index     |
    | action    |

  Scenario Outline: Locating table using multiple parameters
    When I locate the form using "<param1>" and "<param2>"
    Then I should be able to submit the form

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

  Scenario: Finding a form dynamically
    When I locate a form while the script is executing
    Then I should see that the form exists
    And I should be able to submit the form

Version data entries

16 entries across 16 versions & 1 rubygems

Version Path
page-object-0.7.5.1 features/form.feature
page-object-0.7.5 features/form.feature
page-object-0.7.4 features/form.feature
page-object-0.7.3 features/form.feature
page-object-0.7.2 features/form.feature
page-object-0.7.1 features/form.feature
page-object-0.7.0 features/form.feature
page-object-0.6.9 features/form.feature
page-object-0.6.8 features/form.feature
page-object-0.6.7 features/form.feature
page-object-0.6.6 features/form.feature
page-object-0.6.5 features/form.feature
page-object-0.6.4 features/form.feature
page-object-0.6.3 features/form.feature
page-object-0.6.2 features/form.feature
page-object-0.6.1 features/form.feature