Hi,
I'm trying to understand the expected behavior of the following grid validation methods:
await grid.verifyGridRecordCount(expectedCount);
await grid.hasNoRowsOverlay();I tested them on two different generated subjects/grids.
For verifyGridRecordCount():
getRowByIndex()andgetCellValuesByColId()work correctly on the same generated grid.- However,
verifyGridRecordCount()always times out after 10 seconds. - I tried different expected values (for example
1,3,6, and even the visible total count), but the result is always the same.
For hasNoRowsOverlay():
- When the grid is empty, it correctly returns
true. - After records are displayed in the grid, I expected it to return
false(as described in the documentation), but instead it waits for the overlay locator and eventually times out.
Am I using these methods correctly, or are there any prerequisites or limitations for using them?
For reference, other generated grid methods on the same subject, such as getRowByIndex() and getCellValuesByColId(), work as expected.
Thanks!

