From 1c690adfb14121163bda63b6ef87b726ae9ed07c Mon Sep 17 00:00:00 2001 From: mertmit Date: Wed, 8 Feb 2023 22:40:39 +0300 Subject: [PATCH] test: close sort menu after verifying Signed-off-by: mertmit --- tests/playwright/pages/Dashboard/Grid/Column/index.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/playwright/pages/Dashboard/Grid/Column/index.ts b/tests/playwright/pages/Dashboard/Grid/Column/index.ts index 064b2093b5..33bf0d822c 100644 --- a/tests/playwright/pages/Dashboard/Grid/Column/index.ts +++ b/tests/playwright/pages/Dashboard/Grid/Column/index.ts @@ -386,5 +386,8 @@ export class ColumnPageObject extends BasePage { ) .first() .isVisible(); + + // close sort menu + await this.grid.toolbar.clickSort(); } }