Sha256: 6cdc2c8cd1d2fc148f4d80aa020352b2163b14afe55bcc9da49850dd44e5edec

Contents?: true

Size: 863 Bytes

Versions: 2

Compression:

Stored size: 863 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 be able to submit the form

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
druid-ts-1.1.1 features/form.feature
druid-ts-1.1.0 features/form.feature