Sha256: 9dc4a3ecc12f2c1a1b39a0875efe4ee1392b4c0ce846481fc22834083db7563c

Contents?: true

Size: 1.28 KB

Versions: 9

Compression:

Stored size: 1.28 KB

Contents

Feature: Text Area

  Background:
    Given I am on the static elements page

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

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

    Examples:
    | locate_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | label     |
    | css       |

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

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

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

  Scenario: Clearing the text area
    When I type "abcdefghijklmnop" into the text area
    Then the text area should contain "abcdefghijklmnop"
    When I clear the text area
    Then the text area should contain ""

Version data entries

9 entries across 9 versions & 2 rubygems

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