Browse Source

test: child list card visibility

Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com>
pull/5490/head
Raju Udava 1 year ago
parent
commit
7b4a01f7be
  1. 2
      tests/playwright/pages/Dashboard/common/Cell/index.ts

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

@ -297,7 +297,7 @@ export class CellPageObject extends BasePage {
await this.rootPage.waitForSelector('.nc-modal-child-list:visible');
// verify child list count & contents
const childList = await this.rootPage.locator('.ant-card');
const childList = await this.rootPage.locator('.ant-card:visible');
expect(await childList.count()).toBe(count);
// close child list

Loading…
Cancel
Save