Sha256: 4828d8f0cfafc281385a179ec19751e689092e4d4034402a67df024b3c205951
Contents?: true
Size: 1.49 KB
Versions: 14
Compression:
Stored size: 1.49 KB
Contents
Feature: Working with Spinners Scenario: Retrieving the selected Spinner text by id When I'm on the controls screen Then I can see the spinner value referenced by "id" is "Mercury" Scenario: Retrieving the selected Spinner text by index When I'm on the controls screen Then I can see the spinner value referenced by "index" is "Mercury" Scenario: Setting the selected item in a Spinner by id When I'm on the controls screen And I select item number "3" from the spinner using "id" Then I can see the spinner value referenced by "id" is "Mars" 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 |
Version data entries
14 entries across 14 versions & 1 rubygems