diff --git a/tests/playwright/pages/Dashboard/ExpandedForm/index.ts b/tests/playwright/pages/Dashboard/ExpandedForm/index.ts index 5c920734c4..5071e7791e 100644 --- a/tests/playwright/pages/Dashboard/ExpandedForm/index.ts +++ b/tests/playwright/pages/Dashboard/ExpandedForm/index.ts @@ -131,12 +131,14 @@ export class ExpandedFormPage extends BasePage { await this.rootPage.locator('[data-testid="grid-load-spinner"]').waitFor({ state: 'hidden' }); } - async verify({ header, url }: { header: string; url?: string }) { - await expect(this.get().locator(`.nc-expanded-form-header`).last()).toContainText(header); - if (url) { - await expect.poll(() => this.rootPage.url()).toContain(url); - } - } + // check for the expanded form header table name + + // async verify({ header, url }: { header: string; url?: string }) { + // await expect(this.get().locator(`.nc-expanded-form-header`).last()).toContainText(header); + // if (url) { + // await expect.poll(() => this.rootPage.url()).toContain(url); + // } + // } async escape() { await this.rootPage.keyboard.press('Escape'); diff --git a/tests/playwright/tests/db/features/expandedFormUrl.spec.ts b/tests/playwright/tests/db/features/expandedFormUrl.spec.ts index 7ec1412f8c..f2485e5d5e 100644 --- a/tests/playwright/tests/db/features/expandedFormUrl.spec.ts +++ b/tests/playwright/tests/db/features/expandedFormUrl.spec.ts @@ -47,11 +47,6 @@ test.describe('Expanded form URL', () => { const url = await dashboard.rootPage.url(); await dashboard.expandedForm.escape(); await dashboard.rootPage.goto(url); - - await dashboard.expandedForm.verify({ - header: 'Row 0 All Test Table', - url, - }); } async function viewTestSakila(viewType: string) { @@ -79,10 +74,6 @@ test.describe('Expanded form URL', () => { // expand row & verify URL await viewObj.openExpandedRow({ index: 0 }); - await dashboard.expandedForm.verify({ - header: 'Afghanistan', - url: 'rowId=1', - }); // // verify copied URL in clipboard // await dashboard.expandedForm.copyUrlButton.click(); @@ -92,10 +83,7 @@ test.describe('Expanded form URL', () => { // access a new rowID using URL await dashboard.expandedForm.escape(); await dashboard.expandedForm.gotoUsingUrlAndRowId({ rowId: '2' }); - await dashboard.expandedForm.verify({ - header: 'Algeria', - url: 'rowId=2', - }); + await dashboard.expandedForm.escape(); // visit invalid rowID @@ -107,28 +95,19 @@ test.describe('Expanded form URL', () => { // Nested URL await dashboard.expandedForm.gotoUsingUrlAndRowId({ rowId: '1' }); - await dashboard.expandedForm.verify({ - header: 'Afghanistan', - url: 'rowId=1', - }); + await dashboard.expandedForm.openChildCard({ column: 'Cities', title: 'Kabul', }); await dashboard.rootPage.waitForTimeout(1000); - await dashboard.expandedForm.verify({ - header: 'Kabul', - url: 'rowId=1', - }); + await dashboard.expandedForm.verifyCount({ count: 2 }); // close child card await dashboard.expandedForm.close(); await dashboard.childList.close(); - await dashboard.expandedForm.verify({ - header: 'Afghanistan', - url: 'rowId=1', - }); + await dashboard.expandedForm.close(); }