features/scenarios/element_property.feature in web-object-0.3 vs features/scenarios/element_property.feature in web-object-0.4

- old
+ new

@@ -28,6 +28,24 @@ And I verify element attribute is present Scenario: Verify condition for attribute value to contain expected text When I follow toggle_attribute button Then I wait for attribute to be contain value - And I verify element attribute is present + And I verify element attribute is present + + Scenario: Verify condition for element count to be greater than expected + When I follow delayed_more_cells button + Then I wait for element count to be greater than 7 + And I verify element count is greater than 7 + + Scenario: Verify condition for element count to be less than expected + When I follow delayed_less_cells button + Then I wait for element count to be less than 3 + And I verify element count is less than 3 + + Scenario: Verify condition for element count to be equal to expected + When I follow delayed_more_cells button + Then I wait for element count to be equal to 9 + And I verify element count is equal to 9 + When I follow delayed_less_cells button + Then I wait for element count to be equal to 2 + And I verify element count is equal to 2 \ No newline at end of file