From 4f143fc7123687f4945c719823d0da47bb2a5b47 Mon Sep 17 00:00:00 2001 From: musharaf-nocodb Date: Tue, 12 Dec 2023 08:25:02 +0530 Subject: [PATCH] fix : webhook inputfield test case --- tests/playwright/pages/Dashboard/WebhookForm/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/pages/Dashboard/WebhookForm/index.ts b/tests/playwright/pages/Dashboard/WebhookForm/index.ts index f1398fd9ed..264bfa217c 100644 --- a/tests/playwright/pages/Dashboard/WebhookForm/index.ts +++ b/tests/playwright/pages/Dashboard/WebhookForm/index.ts @@ -154,7 +154,7 @@ export class WebhookFormPage extends BasePage { await this.rootPage.waitForTimeout(500); // kludge, as the dropdown is not visible even after scroll into view - await this.rootPage.locator('.ant-select-selection-search').pressSequentially(key); + await this.rootPage.locator('.nc-input-hook-header-key').pressSequentially(key); await this.rootPage .locator('.ant-select-dropdown:visible') .locator(`.ant-select-item:has-text("${key}")`)