features/spinners.feature in gametel-0.5.2 vs features/spinners.feature in gametel-0.5.3

- old
+ new

@@ -16,5 +16,26 @@ Scenario: Setting the select item in a Spinner by index When I'm on the controls screen And I select item number "3" from the spinner using "index" Then I can see the spinner value referenced by "index" is "Mars" + Scenario: Getting the Spinner's view by id + When I'm on the controls screen + Then the spinner indicated by "id" can determine the following properties: + | property | value | + | clickable | true | + | enabled | true | + | focusable | true | + | focused | false | + | selected | false | + | shown | true | + + Scenario: Getting the Spinner's view by index + When I'm on the controls screen + Then the spinner indicated by "index" can determine the following properties: + | property | value | + | clickable | true | + | enabled | true | + | focusable | true | + | focused | false | + | selected | false | + | shown | true |