Sha256: 9b424d035a9881140528ce567cc12001cd404c56ee306a11f43dcd39684f1856

Contents?: true

Size: 1.06 KB

Versions: 38

Compression:

Stored size: 1.06 KB

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    |

  @selenium_only
  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 |
    | css       |

  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

38 entries across 38 versions & 4 rubygems

Version Path
page-object-0.9.4 features/form.feature
page-object-0.9.3 features/form.feature
page-object-0.9.2 features/form.feature
page-object-0.9.1 features/form.feature
page-object-0.9.0 features/form.feature
page-object-0.8.10 features/form.feature
page-object-0.8.9 features/form.feature
page-object-0.8.8 features/form.feature
page-object-0.8.7 features/form.feature
page-object-0.8.6.1 features/form.feature
page-object-0.8.6 features/form.feature
page-object-0.8.5 features/form.feature
page-object-0.8.4 features/form.feature
page-object-0.8.3 features/form.feature
page-object-0.8.2 features/form.feature
page-object-0.8.1 features/form.feature
page-object-0.8 features/form.feature
page-object-0.7.6 features/form.feature