Skip to content

Commit

Permalink
chore(test): fix incorrect locator for recipe catalog (#2107)
Browse files Browse the repository at this point in the history
Signed-off-by: Tibor Dancs <[email protected]>
  • Loading branch information
ScrewTSW authored Nov 18, 2024
1 parent 2cd5ecc commit d501dd4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/playwright/src/model/ai-lab-navigation-bar.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class AILabNavigationBar extends AILabBasePage {
constructor(page: Page, webview: Page) {
super(page, webview, undefined);
this.navigationBar = this.webview.getByRole('navigation', { name: 'PreferencesNavigation' });
this.recipesCatalogButton = this.navigationBar.getByRole('link', { name: 'Recipes Catalog', exact: true });
this.recipesCatalogButton = this.navigationBar.getByRole('link', { name: 'Recipe Catalog', exact: true });
this.runningAppsButton = this.navigationBar.getByRole('link', { name: 'Running' });
this.catalogButton = this.navigationBar.getByRole('link', { name: 'Catalog', exact: true });
this.servicesButton = this.navigationBar.getByRole('link', { name: 'Services' });
Expand Down

0 comments on commit d501dd4

Please sign in to comment.