Sha256: 5e3e396034b0bc00d0e1edc60c16df7e0294a66e16d0a37820b8be294e0edebb

Contents?: true

Size: 1.9 KB

Versions: 1

Compression:

Stored size: 1.9 KB

Contents

Feature: Interacting with the standard text field

  Scenario: Entering text into a text field identified by index
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "index"
    Then I should have the value "example text" on the control screen

  Scenario: Entering text into a text field identified by id
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "id"
    Then I should have the value "example text" on the control screen

  Scenario: Entering text into a text field identified by name
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "name"
    Then I should have the value "example text" on the control screen

  Scenario: Clearing the text from a text field identified by index
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "index"
    Then I should have the value "example text" on the control screen
    When I clear the text from the text field identified by "index"
    Then I should not have the value "example text" on the control screen

  Scenario: Clearing the text from a text field identified by id
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "id"
    Then I should have the value "example text" on the control screen
    When I clear the text from the text field identified by "id"
    Then I should not have the value "example text" on the control screen

  Scenario: Clearing the text from a text field identified by name
    Given I'm on the controls screen
    When I enter "example text" into the text field identified by "name"
    Then I should have the value "example text" on the control screen
    When I clear the text from the text field identified by "name"
    Then I should not have the value "example text" on the control screen

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
gametel-0.2 features/text.feature