Gets the text inside the entire grid organized by rows.
()
| 159 | |
| 160 | /** Gets the text inside the entire grid organized by rows. */ |
| 161 | async getCellTextByIndex(): Promise<string[][]> { |
| 162 | const rows = await this.getRows(); |
| 163 | return parallel(() => rows.map(row => row.getCellTextByIndex())); |
| 164 | } |
| 165 | } |
no test coverage detected