Browse Source

test: for ltar chips, read only name

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

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

@ -273,7 +273,7 @@ export class CellPageObject extends BasePage {
// verify only the elements that are passed in
for (let i = 0; i < value.length; ++i) {
await expect(await chips.nth(i)).toHaveText(value[i]);
await expect(await chips.nth(i).locator('.name')).toHaveText(value[i]);
}
}

Loading…
Cancel
Save