Browse Source

Merge branch 'enhancement/filters' of https://github.com/nocodb/nocodb into enhancement/filters

pull/5106/head
Wing-Kam Wong 2 years ago
parent
commit
94a23c9083
  1. 6
      tests/playwright/pages/Dashboard/common/Cell/index.ts

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

@ -118,8 +118,10 @@ export class CellPageObject extends BasePage {
}).allInnerTexts();
const cellText = typeof innerTexts === 'string' ? [innerTexts] : innerTexts;
if (cellText.includes(text) || cellText[0].includes(text)) {
return;
if (cellText) {
if (cellText.includes(text) || cellText[0].includes(text)) {
return;
}
}
await this.rootPage.waitForTimeout(1000);
count++;

Loading…
Cancel
Save