diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-04-13 20:44:14 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-13 20:44:14 -0700 |
commit | 4b69948366cb2cd9ea9db4dd9c9b98a7da4b2d47 (patch) | |
tree | fc935b1fe6a1dcde28b47d3094d6b0444f80aca5 /__e2e__ | |
parent | 0b43d728e4b95fe2f8085b8d01e34963f8663c0d (diff) | |
download | voidsky-4b69948366cb2cd9ea9db4dd9c9b98a7da4b2d47.tar.zst |
Release 1.77.0 (#3549)
* A couple test fixes * Intl extract
Diffstat (limited to '__e2e__')
-rw-r--r-- | __e2e__/util.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/__e2e__/util.ts b/__e2e__/util.ts index a7869a2e1..70fbdb601 100644 --- a/__e2e__/util.ts +++ b/__e2e__/util.ts @@ -1,5 +1,5 @@ -import {resolveConfig} from 'detox/internals' import {execSync} from 'child_process' +import {resolveConfig} from 'detox/internals' import http from 'http' const platform = device.getPlatform() @@ -52,7 +52,7 @@ export async function login( if (await isVisible('chooseAccountForm')) { await element(by.id('chooseNewAccountBtn')).tap() } - await element(by.id('loginSelectServiceButton')).tap() + await element(by.id('selectServiceButton')).tap() if (takeScreenshots) { await device.takeScreenshot('2- opened service selector') } |