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.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 }