diff --git a/playwright/pageObjects/subnamePage.ts b/playwright/pageObjects/subnamePage.ts index f1117f34e..a52021f43 100644 --- a/playwright/pageObjects/subnamePage.ts +++ b/playwright/pageObjects/subnamePage.ts @@ -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) {