diff options
author | Chocobozzz <me@florianbigard.com> | 2022-11-15 15:56:10 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2022-11-15 15:56:10 +0100 |
commit | 27744d8e563aea995f7911330c63add85ed31ca4 (patch) | |
tree | d597d8b5eb294390a297db8b78cb9662b48c78d9 /client/e2e | |
parent | 7dcd7d81406f4869363d2a5595d5c68f7106eb22 (diff) | |
download | PeerTube-27744d8e563aea995f7911330c63add85ed31ca4.tar.gz PeerTube-27744d8e563aea995f7911330c63add85ed31ca4.tar.zst PeerTube-27744d8e563aea995f7911330c63add85ed31ca4.zip |
Upgrade chromedriver
Diffstat (limited to 'client/e2e')
-rw-r--r-- | client/e2e/src/po/signup.po.ts | 3 |
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 | ||