Skip to content

Commit 9dd8e5d

Browse files
fix: gesture tests
1 parent 8baecce commit 9dd8e5d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/test/java/uitests/Tests/Gestures/GesturesTests.java

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,11 @@ public void gestures_09_binding() throws Exception {
113113
this.gesturesPage.navigateToHandlers();
114114

115115
this.homePageExtended.find.byText("Handlers as exports").tap();
116-
this.device.assertLogContains("tapAction");
116+
if (this.settings.platformVersion < 11 && this.settings.platform == PlatformType.iOS) {
117+
this.assertScreen(5);
118+
} else {
119+
this.device.assertLogContains("tapAction");
120+
}
117121
}
118122

119123
@Test(groups = {"ios"})

0 commit comments

Comments
 (0)