Sha256: c3cfe6eb45775dd1aba5deaae5b6919f5cd7598528bee450292efbd051b9e5b0

Contents?: true

Size: 1.88 KB

Versions: 14

Compression:

Stored size: 1.88 KB

Contents

Feature:  Interacting with progress bars

  Scenario: Getting and setting the progress by id
    Given I am looking at the progress of a seek bar
    When I set the progress indicated by "id" to "37"
    Then I should see the text "37 from touch" on the screen 
    And the retrieved progress indicated by "id" should be "37" 

  Scenario: Getting and setting the progress by index
    Given I am looking at the progress of a seek bar
    When I set the progress indicated by "index" to "11"
    Then the retrieved progress indicated by "index" should be "11" 

  Scenario: Getting and setting the secondary progress by id
    Given I am looking at the progress of a seek bar
    When I set the secondary progress indicated by "id" to "74"
    And the retrieved secondary progress indicated by "id" should be "74" 

  Scenario: Getting the progress max by id
    When I am looking at the progress of a seek bar
    Then the retrieved progress max indicated by "id" should be "100"

  Scenario: Getting the progress max by index
    When I am looking at the progress of a seek bar
    Then the retrieved progress max indicated by "index" should be "100"

  Scenario: Getting the progress bar's view by id
    When I am looking at the progress of a seek bar
    Then the progress bar indicated by "id" can determine the following properties:
      | property  | value |
      | clickable | false |
      | enabled   | true  |
      | focusable | true  |
      | focused   | false |
      | selected  | false |
      | shown     | true  |

  Scenario: Getting the progress bar's view by index
    When I am looking at the progress of a seek bar
    Then the progress bar indicated by "index" can determine the following properties:
      | property  | value |
      | clickable | false |
      | enabled   | true  |
      | focusable | true  |
      | focused   | false |
      | selected  | false |
      | shown     | true  |

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
gametel-0.8 features/progress.feature
gametel-0.7 features/progress.feature
gametel-0.6 features/progress.feature
gametel-0.5.9.3 features/progress.feature
gametel-0.5.9.2 features/progress.feature
gametel-0.5.9.1 features/progress.feature
gametel-0.5.9 features/progress.feature
gametel-0.5.8.1 features/progress.feature
gametel-0.5.8 features/progress.feature
gametel-0.5.7 features/progress.feature
gametel-0.5.6 features/progress.feature
gametel-0.5.5 features/progress.feature
gametel-0.5.4 features/progress.feature
gametel-0.5.3 features/progress.feature