Sha256: 50c78f48c4441c3cbe3daa3f765f3bd200df827a1a34dd0e164a7392b506f907

Contents?: true

Size: 678 Bytes

Versions: 4

Compression:

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

  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  |

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
page-object-0.2.4 features/form.feature
page-object-0.2.3 features/form.feature
page-object-0.2.2 features/form.feature
page-object-0.2.1 features/form.feature