Sha256: 72efe9d604871c6a4365c65ea6791b49bbde66a2befd30173273e7d3471a9174

Contents?: true

Size: 1.46 KB

Versions: 11

Compression:

Stored size: 1.46 KB

Contents

Feature:  Working with TreeView controls

Scenario: Selecting an item by index
  When I select the item with index "1" in the TreeView
  Then the selected TreeView value should be "Parent Two"

Scenario: Selecting an item by value
  When I select the item "Parent Two" in the TreeView
  Then the selected TreeView value should be "Parent Two"

Scenario: Can reveal the available items
  Then the available tree items should be:
  | Tree Items  |
  | Parent One  |
  | Parent Two  |

Scenario: Expanding items by index
  When I expand the tree item with index "0"
  Then the available tree items should be:
  | Tree Items  |
  | Parent One  |
  | Child 1     |
  | Child 2     |
  | Parent Two  |

Scenario: Expanding items by value
  When I expand the tree item "Parent One"
  Then the available tree items should be:
  | Tree Items  |
  | Parent One  |
  | Child 1     |
  | Child 2     |
  | Parent Two  |

Scenario: Collapsing items by index
  When I expand the tree item "Parent One"
  And I collapse the tree item with index "0"
  Then the available tree items should be:
  | Tree Items  |
  | Parent One  |
  | Parent Two  |

Scenario: Collapsing items by value
  When I expand the tree item "Parent One"
  And I collapse the tree item "Parent One"
  Then the available tree items should be:
  | Tree Items  |
  | Parent One  |
  | Parent Two  |

Scenario: Working with the raw view
  Then I am able to interact with the raw tree view

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
mohawk-0.2.1 features/tree_view.feature
mohawk-0.2 features/tree_view.feature
mohawk-0.1.4 features/tree_view.feature
mohawk-0.1.0 features/tree_view.feature
mohawk-0.0.9 features/tree_view.feature
mohawk-0.0.8 features/tree_view.feature
mohawk-0.0.7 features/tree_view.feature
mohawk-0.0.6 features/tree_view.feature
mohawk-0.0.5 features/tree_view.feature
mohawk-0.0.4 features/tree_view.feature
mohawk-0.0.3 features/tree_view.feature