Gets the text of the cells in the row.
(filters: GridCellHarnessFilters = {})
| 113 | |
| 114 | /** Gets the text of the cells in the row. */ |
| 115 | async getCellTextByIndex(filters: GridCellHarnessFilters = {}): Promise<string[]> { |
| 116 | const cells = await this.getCells(filters); |
| 117 | return parallel(() => cells.map(cell => cell.getText())); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | /** Harness for interacting with a standard ngGrid in tests. */ |