diff --git a/tests/playwright/pages/Dashboard/Grid/Column/index.ts b/tests/playwright/pages/Dashboard/Grid/Column/index.ts index 4cfc89506f..29f4c08fe1 100644 --- a/tests/playwright/pages/Dashboard/Grid/Column/index.ts +++ b/tests/playwright/pages/Dashboard/Grid/Column/index.ts @@ -306,6 +306,11 @@ export class ColumnPageObject extends BasePage { }) .click(); break; + case 'Date': + // Date Format + await this.get().locator('.nc-date-select').click(); + await this.rootPage.locator('.ant-select-item').locator(`[data-testid="nc-${dateFormat}"]`).click(); + break; case 'DateTime': // Date Format await this.get().locator('.nc-date-select').click(); @@ -314,11 +319,6 @@ export class ColumnPageObject extends BasePage { await this.get().locator('.nc-time-select').click(); await this.rootPage.locator('.ant-select-item').locator(`[data-testid="nc-time-${timeFormat}"]`).click(); break; - case 'Date': - // Date Format - await this.get().locator('.nc-date-select').click(); - await this.rootPage.locator('.ant-select-item').locator(`[data-testid="nc-${dateFormat}"]`).click(); - break; default: break; }