Browse Source

fix: pw

pull/8192/head
Raju Udava 5 months ago
parent
commit
305ec6dc96
  1. 3
      tests/playwright/pages/Dashboard/Grid/index.ts

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

@ -212,6 +212,9 @@ export class GridPage extends BasePage {
} }
async deleteRow(index: number, title = 'Title') { async deleteRow(index: number, title = 'Title') {
await this.get().getByTestId(`cell-${title}-${index}`).click();
await this.rootPage.waitForTimeout(300);
await this.get().getByTestId(`cell-${title}-${index}`).click({ await this.get().getByTestId(`cell-${title}-${index}`).click({
button: 'right', button: 'right',
}); });

Loading…
Cancel
Save