Sha256: df787ca0a64eb76d90ad5311d2799d7f1f9e8e3f51ae498cc4abbdb2d0d35659

Contents?: true

Size: 794 Bytes

Versions: 2

Compression:

Stored size: 794 Bytes

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     |  
    | css       |
    | tag_name  |

  @watir_only
  Scenario Outline: Locating text fields on Watir only
    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 |
    | index     |

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
page-object-0.0.5 features/text_area.feature
page-object-0.0.4 features/text_area.feature