Sha256: 4739f51a37d6f0796e0e3a36d29efc2372d760afdc986a4c502fb562ba3e6c1b

Contents?: true

Size: 817 Bytes

Versions: 13

Compression:

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

  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

13 entries across 13 versions & 1 rubygems

Version Path
page-object-0.5.3 features/form.feature
page-object-0.5.2 features/form.feature
page-object-0.5.1 features/form.feature
page-object-0.5.0 features/form.feature
page-object-0.4.4 features/form.feature
page-object-0.4.3 features/form.feature
page-object-0.4.2 features/form.feature
page-object-0.4.1 features/form.feature
page-object-0.4.0 features/form.feature
page-object-0.3.2 features/form.feature
page-object-0.3.1 features/form.feature
page-object-0.3.0 features/form.feature
page-object-0.2.5 features/form.feature