Sha256: 8dbd8cbdb6a763fcdbe91b0f0bb7bd8b6d25fe661ae3ee1e2c0c632af8bb0b5a

Contents?: true

Size: 835 Bytes

Versions: 3

Compression:

Stored size: 835 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 be able to submit the form

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.6 features/form.feature
page-object-0.5.5 features/form.feature
page-object-0.5.4 features/form.feature