Gets the text of the cells in the row.
(filter: CellHarnessFilters = {})
| 41 | |
| 42 | /** Gets the text of the cells in the row. */ |
| 43 | async getCellTextByIndex(filter: CellHarnessFilters = {}): Promise<string[]> { |
| 44 | const cells = await this.getCells(filter); |
| 45 | return parallel(() => cells.map(cell => cell.getText())); |
| 46 | } |
| 47 | |
| 48 | /** Gets the text inside the row organized by columns. */ |
| 49 | async getCellTextByColumnName(): Promise<MatRowHarnessColumnsText> { |