Sha256: 95e7763e7c344fc9af1b8e54d13bf990c5fe89d390663e7ff773ecc6990e22f8

Contents?: true

Size: 1.52 KB

Versions: 2

Compression:

Stored size: 1.52 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: 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: Retrieving text identified by index
    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" in the text field identified by "id"

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
gametel-0.5 features/text.feature
gametel-0.4 features/text.feature