features/view.feature in gametel-0.7 vs features/view.feature in gametel-0.8
- old
+ new
@@ -3,10 +3,15 @@
Scenario: Clicking on views by their id
When I am perusing options for Alert Dialogs
And I choose the List Dialogs button by id
Then I should see the "Command one" list item
+ Scenario: Clicking on views by their class
+ When I'm on the controls screen
+ Then I should be able to click a view by "class"
+ And the checkbox identified by "text" should be checked
+
Scenario: Clicking on view by their text
When I'm on the controls screen
Then I should be able to click a view by "text"
Scenario: Determining properties of a view
@@ -15,7 +20,18 @@
| property | value |
| clickable | true |
| enabled | true |
| focusable | true |
| focused | true |
+ | selected | false |
+ | shown | true |
+
+ Scenario: Determining properties of a view
+ When I'm on the controls screen
+ Then the "view" field identified by "class" can determine the following properties:
+ | property | value |
+ | clickable | true |
+ | enabled | true |
+ | focusable | true |
+ | focused | false |
| selected | false |
| shown | true |