From dcf6c761543e795794b9c3946173b70f1a0b6ff1 Mon Sep 17 00:00:00 2001 From: Reinaldo Neto Date: Fri, 6 Oct 2023 12:49:13 -0300 Subject: [PATCH] fix action sheet swipe 05-threads --- e2e/tests/room/05-threads.spec.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e/tests/room/05-threads.spec.ts b/e2e/tests/room/05-threads.spec.ts index 9f46eceab..e4baaf7fd 100644 --- a/e2e/tests/room/05-threads.spec.ts +++ b/e2e/tests/room/05-threads.spec.ts @@ -237,6 +237,8 @@ describe('Threads', () => { .withTimeout(5000); await element(by.id(`message-thread-button-${thread}`)).tap(); await tryTapping(element(by[textMatcher]('replied')).atIndex(0), 2000, true); + // open the action-sheet, then swipe the scroll inside the action-sheet + await element(by.id('action-sheet-handle')).swipe('up', 'fast', 0.5); await element(by.id('action-sheet')).swipe('up', 'fast', 0.5); await sleep(300); // wait for animation await element(by[textMatcher]('Delete')).atIndex(0).tap();