Browse Source

Fix item description tests on IE for RadioButtonGroup and CheckBoxGroup (#9866)

tags/8.2.0.alpha1
Aleksi Hietanen 6 years ago
parent
commit
74e8bd248d

+ 5
- 0
uitest/src/test/java/com/vaadin/tests/components/checkboxgroup/CheckBoxGroupTest.java View File

@@ -292,4 +292,9 @@ public class CheckBoxGroupTest extends MultiBrowserTest {
}
}

// needed to make tooltips work in IE tests
@Override
protected boolean requireWindowFocusForIE() {
return true;
}
}

+ 6
- 0
uitest/src/test/java/com/vaadin/tests/components/radiobuttongroup/RadioButtonGroupTest.java View File

@@ -246,4 +246,10 @@ public class RadioButtonGroupTest extends MultiBrowserTest {
}
assertEquals("Number of items", count, i);
}

// needed to make tooltips work in IE tests
@Override
protected boolean requireWindowFocusForIE() {
return true;
}
}

Loading…
Cancel
Save