Skip to content

Commit

Permalink
fix: missing exact in locator
Browse files Browse the repository at this point in the history
  • Loading branch information
dougfabris committed Jul 31, 2024
1 parent 9d2b1b6 commit 0666141
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ export class HomeSidenav {
}

get advancedSettingsAccordion(): Locator {
return this.page.getByRole('dialog').getByRole('button', { name: 'Advanced settings' });
return this.page.getByRole('dialog').getByRole('button', { name: 'Advanced settings', exact: true });
}

get checkboxPrivateChannel(): Locator {
Expand Down

0 comments on commit 0666141

Please sign in to comment.