Skip to content

Commit

Permalink
Fix TreeGridBasicFeaturesTest for IE11 (#8933)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ilia Motornyi authored and hesara committed Mar 24, 2017
1 parent 0bee1dc commit 3d018d4
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,12 @@ public void changing_hierarchy_column() {
.isElementPresent(By.className("v-tree-grid-expander")));
}

@Override
protected boolean useNativeEventsForIE() {
//Fixes IE11 selectMenuPath troubles
return false;
}

@Test
public void expand_and_collapse_listeners() {
selectMenuPath("Component", "State", "Expand listener");
Expand Down

0 comments on commit 3d018d4

Please sign in to comment.