-
Notifications
You must be signed in to change notification settings - Fork 356
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. Weβll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[QAA] Refactoring layout class #8941
base: develop
Are you sure you want to change the base?
Conversation
The latest updates on your projects. Learn more about Vercel for Git βοΈ 4 Skipped Deployments
|
762b976
to
63f8aa9
Compare
@@ -15,4 +18,14 @@ export class LockscreenPage extends AppPage { | |||
async lostPassword() { | |||
await this.forgottenButton.click(); | |||
} | |||
|
|||
@step("Check input error state visibibility: $0") | |||
async checkInputErrorVisibibility(expectedState: "visible" | "hidden") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo in method name
@@ -133,4 +137,37 @@ export class SendModal extends Modal { | |||
await this.cryptoAmountField.fill(amount); | |||
} | |||
} | |||
|
|||
@step("Check input error state visibibility: $0") | |||
async checkInputErrorVisibibility(expectedState: "visible" | "hidden") { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
} | ||
|
||
@step("Check warning message") | ||
async checkAmoutWarningMessage(expectedWarningMessage: RegExp) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
typo
|
||
@step("Wait for balance to be visible") | ||
async expectBalanceVisibility() { | ||
await this.totalBalance.waitFor({ state: "visible" }); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see that we also have in the account.page an element with the same test id "total-balance" defined. It would be better if we can disassociate both (maybe in another ticket)
β Checklist
npx changeset
was attached.π Description
Refacto layout class:
β Context
π§ Checklist for the PR Reviewers