Sha256: 6553aebd3b973f48a58d94df97585ecb2036bf8c61771c271c82723abe4f4b05

Contents?: true

Size: 627 Bytes

Versions: 2

Compression:

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

  @watir_only
  Scenario Outline: Locating a form on the page watir only
    When I locate the form by "<search_by>"
    Then I should be able to submit the form
  
  Scenarios:
    | search_by |
    | index     |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.0.5 features/form.feature
page-object-0.0.4 features/form.feature