diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-02-12 18:55:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-12 18:55:19 -0800 |
commit | 543e114877fcd00dd8c717a1116757a1a37d5aff (patch) | |
tree | f2a5b6b44622c53e4891208c00434acc9e90c9b1 /__e2e__/util.ts | |
parent | fad40dda97c4c4ecc4165524d0898494582ccac2 (diff) | |
download | voidsky-543e114877fcd00dd8c717a1116757a1a37d5aff.tar.zst |
Update tests to get them passing again (#2853)
Diffstat (limited to '__e2e__/util.ts')
-rw-r--r-- | __e2e__/util.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/__e2e__/util.ts b/__e2e__/util.ts index 8c47406c0..a7869a2e1 100644 --- a/__e2e__/util.ts +++ b/__e2e__/util.ts @@ -56,9 +56,10 @@ export async function login( if (takeScreenshots) { await device.takeScreenshot('2- opened service selector') } + await element(by.id('customSelectBtn')).tap() await element(by.id('customServerTextInput')).typeText(service) await element(by.id('customServerTextInput')).tapReturnKey() - await element(by.id('customServerSelectBtn')).tap() + await element(by.id('doneBtn')).tap() if (takeScreenshots) { await device.takeScreenshot('3- input custom service') } |