Sha256: 67f38837f9da88128bb16b783a719c5bfde0ad5666ac25eed233a2ac7bf0d1b6

Contents?: true

Size: 1.32 KB

Versions: 2

Compression:

Stored size: 1.32 KB

Contents

Feature: Hidden Fields

  Background:
    Given I am on the static elements page

  Scenario: Setting and 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 search for the hidden field by "<search_by>"
    Then the hidden field element should contain "12345"

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | text      |
    | value     |

  @selenium_only
  Scenario Outline: Locating hidden fields on the Page
    When I search for the hidden field by "<search_by>"
    Then the hidden field element should contain "12345"

  Scenarios:
    | search_by |
    | css       |

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

  Scenarios:
    | param1 | param2 |
    | class  | index  |
    | name   | index  |

  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 the hidden field element should contain "12345"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
meeane-page-object-0.1.10 features/hidden_field.feature
meeane-page-object-0.1.8 features/hidden_field.feature