From 57aba31fdf440dc9b6848466776e928ff9addba2 Mon Sep 17 00:00:00 2001 From: waterplea Date: Mon, 5 Feb 2024 13:58:22 +0400 Subject: [PATCH] chore: fix test --- .../utils/page-objects/documentation-api-page.po.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/projects/demo-playwright/utils/page-objects/documentation-api-page.po.ts b/projects/demo-playwright/utils/page-objects/documentation-api-page.po.ts index 8139c3847cff..061e50fdeffb 100644 --- a/projects/demo-playwright/utils/page-objects/documentation-api-page.po.ts +++ b/projects/demo-playwright/utils/page-objects/documentation-api-page.po.ts @@ -33,7 +33,7 @@ export class TuiDocumentationApiPagePO { } async hideNotifications(): Promise { - const notifications = await this.page.locator('tui-alert-host tui-alert').all(); + const notifications = await this.page.locator('tui-alerts tui-alert').all(); for (const notification of notifications) { await tuiHideElement(notification);