Skip to main content

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?​

WaitForTableDataOptions

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 });`