Sha256: 71d987c1d38b9f215623b29fa674e32ee9646714a311fda7b1bfa4fbc0bd13e6

Contents?: true

Size: 1.06 KB

Versions: 9

Compression:

Stored size: 1.06 KB

Contents

Feature: Hidden Fields

  Background:
    Given I am on the static elements page

  Scenario: Getting a value from a hidden field
    When I retrieve the hidden field element
    Then I should see the hidden field contains "12345"

  Scenario Outline: Locating hidden fields on the Page
    When I locate the hidden field by "<locate_by>"
    Then hidden field element should contains "12345"

    Examples:
    | locate_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | text      |
    | value     |
    | css       |

  @multi
  Scenario Outline: Locating a hidden field using multiple parameters
    When I search for the hidden field by "<param1>" and "<param2>"
    Then hidden field element should contains "12345"

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

  @locator
  Scenario: Finding a hidden field dynamically
    When I find a hidden field while the script is executing
    Then I should see that the hidden field exists
    And hidden field element should contains "12345"

Version data entries

9 entries across 9 versions & 2 rubygems

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