aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-11-15 15:56:10 +0100
committerChocobozzz <me@florianbigard.com>2022-11-15 15:56:10 +0100
commit27744d8e563aea995f7911330c63add85ed31ca4 (patch)
treed597d8b5eb294390a297db8b78cb9662b48c78d9 /client/e2e/src
parent7dcd7d81406f4869363d2a5595d5c68f7106eb22 (diff)
downloadPeerTube-27744d8e563aea995f7911330c63add85ed31ca4.tar.gz
PeerTube-27744d8e563aea995f7911330c63add85ed31ca4.tar.zst
PeerTube-27744d8e563aea995f7911330c63add85ed31ca4.zip
Upgrade chromedriver
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