features/text_field.feature in page-object-0.6 vs features/text_field.feature in page-object-0.6.1

- old
+ new

@@ -39,6 +39,13 @@ Then I should know it exists And I should know it is visible Scenario: Finding a text field dynamically When I find a text field while the script is executing - Then I should be able to type "I found it" into the field element + Then I should see that the text field exists + And I should be able to type "I found it" into the field element + + Scenario: Appending text to a text field + When I type "abcd" into the text field + And I append "efg" to the text field + Then the text field should contain "abcdefg" +