Sha256: 282160acbb746336122b2a58789d217bb1975dbfdc6115ee4ae7f6ff8778937a

Contents?: true

Size: 1.47 KB

Versions: 30

Compression:

Stored size: 1.47 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 search for the text area by "<search_by>"
    Then I should be able to type "I found it" into the area

  Scenarios:
    | search_by |
    | id        |
    | class     |
    | name      |
    | xpath     |
    | index     |
    | label     |

  @selenium_only
  Scenario Outline: Locating text area on the Page
    When I search for the text area by "<search_by>"
    Then I should be able to type "I found it" into the area

  Scenarios:
    | search_by |
    | css       |

  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

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

  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

30 entries across 30 versions & 4 rubygems

Version Path
page-object-1.2.0 features/text_area.feature
page-object-1.1.1 features/text_area.feature
page_object-1.1.3 features/text_area.feature
page_object-1.1.2 features/text_area.feature
page_object-1.1.1 features/text_area.feature
page-object-1.1.0 features/text_area.feature
page-object-lds-0.0.14 features/text_area.feature
page-object-lds-0.0.13 features/text_area.feature
page-object-lds-0.0.12 features/text_area.feature
page-object-lds-0.0.11 features/text_area.feature
page-object-lds-0.0.1 features/text_area.feature
page-object-1.0.3 features/text_area.feature
meeane-page-object-0.1.11 features/text_area.feature
page-object-1.0.2 features/text_area.feature
page-object-1.0.1 features/text_area.feature
page-object-1.0 features/text_area.feature
page-object-0.9.8 features/text_area.feature
page-object-0.9.7 features/text_area.feature
page-object-0.9.6 features/text_area.feature
page-object-0.9.5 features/text_area.feature