Skip to content

Commit 9bde531

Browse files
committed
fix: wait before swipe
1 parent ebacaf4 commit 9bde531

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

e2e/lightning.e2e.js

+1
Original file line numberDiff line numberDiff line change
@@ -238,6 +238,7 @@ d('Lightning', () => {
238238
await element(by.id('TagsAddSend')).tap(); // add tag
239239
await element(by.id('TagInputSend')).typeText('stag');
240240
await element(by.id('TagInputSend')).tapReturnKey();
241+
await sleep(500); // wait for keyboard to close
241242
await element(by.id('GRAB')).swipe('right', 'slow', 0.95); // Swipe to confirm
242243
await waitFor(element(by.id('SendSuccess')))
243244
.toBeVisible()

e2e/onchain.e2e.js

+1
Original file line numberDiff line numberDiff line change
@@ -124,6 +124,7 @@ d('Onchain', () => {
124124
await element(by.id('TagsAddSend')).tap(); // add tag
125125
await element(by.id('TagInputSend')).typeText('stag');
126126
await element(by.id('TagInputSend')).tapReturnKey();
127+
await sleep(500); // wait for keyboard to close
127128
await element(by.id('GRAB')).swipe('right', 'slow', 0.95); // Swipe to confirm
128129

129130
await sleep(1000); // animation

0 commit comments

Comments
 (0)