Gets all cells in the row.
(filters: GridCellHarnessFilters = {})
| 108 | |
| 109 | /** Gets all cells in the row. */ |
| 110 | async getCells(filters: GridCellHarnessFilters = {}): Promise<GridCellHarness[]> { |
| 111 | return this.locatorForAll(GridCellHarness.with(filters))(); |
| 112 | } |
| 113 | |
| 114 | /** Gets the text of the cells in the row. */ |
| 115 | async getCellTextByIndex(filters: GridCellHarnessFilters = {}): Promise<string[]> { |
no test coverage detected