Browse Source

test: fix

pull/6424/head
DarkPhoenix2704 11 months ago
parent
commit
5d1a5d09e3
  1. 13
      tests/playwright/pages/Dashboard/common/Cell/index.ts

13
tests/playwright/pages/Dashboard/common/Cell/index.ts

@ -364,14 +364,21 @@ export class CellPageObject extends BasePage {
// For HM/MM columns
else {
await cell.locator('.nc-datatype-link').click();
await this.rootPage
.locator(`[data-testid="nc-child-list-item"]`)
.last()
.waitFor({ state: 'visible', timeout: 3000 });
await this.waitForResponse({
uiAction: async () =>
this.rootPage.locator(`[data-testid="nc-child-list-item"]`).last().click({
force: true,
}),
await this.rootPage
.locator(`[data-testid="nc-child-list-item"]`)
.last()
.click({ force: true, timeout: 3000 }),
requestUrlPathToMatch: '/api/v1/db/data/noco/',
httpMethodsToMatch: ['GET'],
});
await this.rootPage.keyboard.press('Escape');
}
}

Loading…
Cancel
Save