Sha256: 1ce8f71f9392c2ddb1b18ceb7f8ec0ae9815dc82488bfc27035f7b4b0422899c

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 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     |
    | index     |
    | text      |
    | title     |
    | label     |
    | css       |
    | data_field|

  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   |

  @locator
  Scenario: Finding a text field dynamically
    When I find a text field while the script is executing
    Then I should see that the text field exists
    And I should be able to type "i found it" into the field element

  Scenario: Appending text to a text field
    When I type "abcd" into the text field
    And I append "efg" to the text field
    Then the text field should contain "abcdefg"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
druid-ts-1.2.0 features/text_field.feature
druid-ts-1.1.8 features/text_field.feature