aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src
diff options
context:
space:
mode:
Diffstat (limited to 'client/e2e/src')
-rw-r--r--client/e2e/src/po/signup.po.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/client/e2e/src/po/signup.po.ts b/client/e2e/src/po/signup.po.ts
index 7a17198cc..cc2ed7c5f 100644
--- a/client/e2e/src/po/signup.po.ts
+++ b/client/e2e/src/po/signup.po.ts
@@ -42,6 +42,9 @@ export class SignupPage {
42 } 42 }
43 43
44 if (options.email) { 44 if (options.email) {
45 // Fix weird bug on firefox that "cannot scroll into view" when using just `setValue`
46 await $('#email').scrollIntoView(false)
47 await $('#email').waitForClickable()
45 await $('#email').setValue(options.email) 48 await $('#email').setValue(options.email)
46 } 49 }
47 50