aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src/po/signup.po.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/e2e/src/po/signup.po.ts')
-rw-r--r--client/e2e/src/po/signup.po.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/e2e/src/po/signup.po.ts b/client/e2e/src/po/signup.po.ts
index 7917cdda7..84a7a1847 100644
--- a/client/e2e/src/po/signup.po.ts
+++ b/client/e2e/src/po/signup.po.ts
@@ -50,7 +50,7 @@ export class SignupPage {
50 await $('#password').setValue(options.password || 'password') 50 await $('#password').setValue(options.password || 'password')
51 51
52 // Fix weird bug on firefox that "cannot scroll into view" when using just `setValue` 52 // Fix weird bug on firefox that "cannot scroll into view" when using just `setValue`
53 await $('#email').scrollIntoView(false) 53 await $('#email').scrollIntoView({ block: 'center' })
54 await $('#email').waitForClickable() 54 await $('#email').waitForClickable()
55 await $('#email').setValue(options.email || `${options.username}@example.com`) 55 await $('#email').setValue(options.email || `${options.username}@example.com`)
56 } 56 }