Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislav Lysak committed Sep 12, 2024
1 parent 1cd639b commit c3e2182
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright/pageObjects/subnamePage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ export class SubnamesPage {
readonly getDisabledAddSubnameButton: Locator
readonly getAddSubnameInput: Locator
readonly getSubmitSubnameButton: Locator
readonly getSubmitProfileButton: Locator
readonly getSubmitSubnameProfileButton: Locator

constructor(page: Page) {
this.page = page
this.getAddSubnameButton = this.page.getByTestId('add-subname-action')
this.getDisabledAddSubnameButton = this.page.getByTestId('add-subname-disabled-button')
this.getAddSubnameInput = this.page.getByTestId('add-subname-input')
this.getSubmitProfileButton = this.page.getByTestId('create-subname-profile-next')
this.getSubmitSubnameButton = this.page.getByTestId('create-subname-next')
this.getSubmitSubnameProfileButton = this.page.getByTestId('create-subname-profile-next')
}

async goto(name: string) {
Expand Down

0 comments on commit c3e2182

Please sign in to comment.