Sha256: 09e188a3f333cfb7a212766defcfd8213f58999715f3b65e2b9b4cd626920977

Contents?: true

Size: 1.1 KB

Versions: 1

Compression:

Stored size: 1.1 KB

Contents

Feature: Text Fields
  In order to interact with text fields
  Testers will need access and interrogation ability

  Background:
    Given I am on the static elements page

  Scenario: Setting and getting a value from a text field
    When I type "abcDEF" into the text field
    Then the text field should contain "abcDEF"

  @dev
  Scenario Outline: Locating text fields on the Page
    When I locate the text field by "<locate_by>"
    Then I should be able to type "I found it" into the field

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

  Scenario: Retrieve a text field
    When I retrieve a text field
    Then I should know it exists
    And I should know it is visible

  @multi
  Scenario Outline: Locating a text field using multiple parameters
    When I search for the text field by "<param1>" and "<param2>"
    Then I should be able to type "I found it" into the field

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

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
druid-ts-0.0.1 features/text_field.feature