Sha256: 6043c90a447b08906c4c1102df1a7fb6eec0c2f3f0b4ee19e26ed87b234f3b7e

Contents?: true

Size: 688 Bytes

Versions: 3

Compression:

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

3 entries across 3 versions & 1 rubygems

Version Path
page-object-0.2 features/form.feature
page-object-0.1.1 features/form.feature
page-object-0.1 features/form.feature