Gets all the regular data rows in a table.
(filter: RowHarnessFilters = {})
| 57 | |
| 58 | /** Gets all the regular data rows in a table. */ |
| 59 | async getRows(filter: RowHarnessFilters = {}): Promise<MatRowHarness[]> { |
| 60 | return this.locatorForAll(this._rowHarness.with(filter))(); |
| 61 | } |
| 62 | |
| 63 | /** Gets all the footer rows in a table. */ |
| 64 | async getFooterRows(filter: RowHarnessFilters = {}): Promise<MatFooterRowHarness[]> { |