Sha256: 4075c0cd4173496f503e2586051b2e1ecb3df8f66333cfb377a4c535c4c56cd1

Contents?: true

Size: 923 Bytes

Versions: 9

Compression:

Stored size: 923 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     |
    | action    |
    | css       |

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

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

9 entries across 9 versions & 2 rubygems

Version Path
druid-s-1.0.0 features/form.feature
druid-ts-1.2.6 features/form.feature
druid-ts-1.2.5 features/form.feature
druid-ts-1.2.4 features/form.feature
druid-ts-1.2.3 features/form.feature
druid-ts-1.2.2 features/form.feature
druid-ts-1.2.1 features/form.feature
druid-ts-1.2.0 features/form.feature
druid-ts-1.1.8 features/form.feature