Skip to content

Commit

Permalink
change to use button name instead of aria label
Browse files Browse the repository at this point in the history
  • Loading branch information
gmrabian committed Nov 19, 2024
1 parent f4c478d commit 31e06af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/playwright/utils/pageObjects/base.page.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export default class BasePage {
});
this.continueButton = page.getByRole("button", { name: "Continue" });
this.previousButton = page.getByRole("button", { name: "Previous" });
this.myAccountButton = page.getByRole("button", { name: "my account" });
this.myAccountButton = page.getByRole("button", { name: "My Account" });
this.accountMenu = page.getByRole("menu");
this.manageAccountButton = page.getByRole("menuitem", {
name: "Manage Account",
Expand Down

0 comments on commit 31e06af

Please sign in to comment.