Sha256: 382cdae39dfa0d708897daf193497ba0ad7e7dccab4a4457a3b86afe5bb38847

Contents?: true

Size: 769 Bytes

Versions: 4

Compression:

Stored size: 769 Bytes

Contents

Feature: Interacting with buttons

  Scenario: Should be able to click a button by text
    Given I'm on the buttons screen
    Then I should be able to click the button by "text"

  Scenario: Should be able to click a button by index
    Given I'm on the buttons screen
    Then I should be able to click the button by "index"

  Scenario: Should be able to click a button by id
    Given I'm on the buttons screen
    When I click the on/off button by "id"
    Then I should see the text "ON" on the screen

  Scenario: Should be able to click a toggle button
    Given I'm on the buttons screen
    When I click the on/off button
    Then I should see the text "ON" on the screen
    When I click the on/off button
    Then I should see the text "OFF" on the screen

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
gametel-0.5 features/button.feature
gametel-0.4 features/button.feature
gametel-0.3 features/button.feature
gametel-0.2 features/button.feature