Sha256: 83431e71125e40c866bc4ec8b0c5a0c0012463ce22107abd874cc2140f2cc8dc

Contents?: true

Size: 706 Bytes

Versions: 1

Compression:

Stored size: 706 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 "<locate_by>"
    Then I should be able to submit the form

    Examples:
    | locate_by |
    | id        |
    | class     |
    | xpath     |
    | index     |

  @multi
  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

      Examples:
      | param1  | param2  |
      | class   | index   |
      | name    | index   |

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
druid-ts-0.0.1 features/form.feature