Function: waitForTableData()
waitForTableData(
page,tableId,options?):Promise<void>
Defined in: src/modules/table.ts:433
Waits for table data to load with a minimum row count.
Parameters​
page​
TablePage
Playwright Page (or compatible subset).
tableId​
string
The UI5 control ID.
options?​
Wait options.
Returns​
Promise<void>
Remarks​
Uses page.waitForFunction() with a browser-side predicate. Throws TimeoutError on timeout.
Example​
`await waitForTableData(page, 'myTable', { minRows: 5 });`