Sha256: 0b4d67c29a29d4985d4bc536bc4526f42788c117b3a1cf2aa0273331be9fa689
Contents?: true
Size: 1.22 KB
Versions: 13
Compression:
Stored size: 1.22 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 | | css | | tag_name | | index | 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 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
13 entries across 13 versions & 1 rubygems