Sha256: acc39242cfbd0f5d88d3c70b8ef4956a7e2acc3ecd4c4cd8085bfb6243c06363

Contents?: true

Size: 905 Bytes

Versions: 6

Compression:

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

  @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

6 entries across 6 versions & 1 rubygems

Version Path
druid-ts-1.1.7 features/form.feature
druid-ts-1.1.6 features/form.feature
druid-ts-1.1.5 features/form.feature
druid-ts-1.1.4 features/form.feature
druid-ts-1.1.3 features/form.feature
druid-ts-1.1.2 features/form.feature