Browse Source

fix: insert table test

pull/6384/head
sreehari jayaraj 1 year ago
parent
commit
7d59933e1f
  1. 2
      tests/playwright/pages/Dashboard/Grid/index.ts

2
tests/playwright/pages/Dashboard/Grid/index.ts

@ -217,7 +217,7 @@ export class GridPage extends BasePage {
await cell.click({ button: 'right' });
// Click text=Insert New Row
await this.rootPage.locator('text=Insert New Row').click();
await this.rootPage.locator('.insert-row').click();
await expect(this.get().locator('.nc-grid-row')).toHaveCount(rowCount + 1);
}

Loading…
Cancel
Save