We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8baecce commit 9dd8e5dCopy full SHA for 9dd8e5d
src/test/java/uitests/Tests/Gestures/GesturesTests.java
@@ -113,7 +113,11 @@ public void gestures_09_binding() throws Exception {
113
this.gesturesPage.navigateToHandlers();
114
115
this.homePageExtended.find.byText("Handlers as exports").tap();
116
- this.device.assertLogContains("tapAction");
+ if (this.settings.platformVersion < 11 && this.settings.platform == PlatformType.iOS) {
117
+ this.assertScreen(5);
118
+ } else {
119
+ this.device.assertLogContains("tapAction");
120
+ }
121
}
122
123
@Test(groups = {"ios"})
0 commit comments