aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/e2e/src/po/signup.po.ts
diff options
context:
space:
mode:
authorChocobozzz <me@florianbigard.com>2022-10-28 11:19:54 +0200
committerChocobozzz <me@florianbigard.com>2022-10-28 15:22:40 +0200
commit814e9e07ba65446af8446dbbd2f0d70c85fd1b33 (patch)
tree9c1f130d4a773208c5bdf33ec942be060e3c3ad2 /client/e2e/src/po/signup.po.ts
parent672e185bf3004b46552c227483ffd2802ebf6844 (diff)
downloadPeerTube-814e9e07ba65446af8446dbbd2f0d70c85fd1b33.tar.gz
PeerTube-814e9e07ba65446af8446dbbd2f0d70c85fd1b33.tar.zst
PeerTube-814e9e07ba65446af8446dbbd2f0d70c85fd1b33.zip
Improve E2E tests
Add tests for private video static endpoints Fix tests for local firefox
Diffstat (limited to 'client/e2e/src/po/signup.po.ts')
-rw-r--r--client/e2e/src/po/signup.po.ts3
1 files changed, 2 insertions, 1 deletions
diff --git a/client/e2e/src/po/signup.po.ts b/client/e2e/src/po/signup.po.ts
index ef36dbcc4..7a17198cc 100644
--- a/client/e2e/src/po/signup.po.ts
+++ b/client/e2e/src/po/signup.po.ts
@@ -9,7 +9,7 @@ export class SignupPage {
9 async clickOnRegisterInMenu () { 9 async clickOnRegisterInMenu () {
10 const button = this.getRegisterMenuButton() 10 const button = this.getRegisterMenuButton()
11 11
12 await button.waitForDisplayed() 12 await button.waitForClickable()
13 await button.click() 13 await button.click()
14 } 14 }
15 15
@@ -22,6 +22,7 @@ export class SignupPage {
22 22
23 async checkTerms () { 23 async checkTerms () {
24 const terms = await getCheckbox('terms') 24 const terms = await getCheckbox('terms')
25 await terms.waitForClickable()
25 26
26 return terms.click() 27 return terms.click()
27 } 28 }