From d501dd419a8476b4a2ddfbfac1d0e0c55981dabc Mon Sep 17 00:00:00 2001 From: Tibor Dancs Date: Mon, 18 Nov 2024 14:06:42 +0100 Subject: [PATCH] chore(test): fix incorrect locator for recipe catalog (#2107) Signed-off-by: Tibor Dancs --- tests/playwright/src/model/ai-lab-navigation-bar.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/src/model/ai-lab-navigation-bar.ts b/tests/playwright/src/model/ai-lab-navigation-bar.ts index 63ca648cd..e735ba04f 100644 --- a/tests/playwright/src/model/ai-lab-navigation-bar.ts +++ b/tests/playwright/src/model/ai-lab-navigation-bar.ts @@ -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' });