Whether the grid is multi-selectable.
()
| 143 | |
| 144 | /** Whether the grid is multi-selectable. */ |
| 145 | async isMultiSelectable(): Promise<boolean> { |
| 146 | const host = await this.host(); |
| 147 | return (await host.getAttribute('aria-multiselectable')) === 'true'; |
| 148 | } |
| 149 | |
| 150 | /** Gets all rows in the grid. */ |
| 151 | async getRows(filters: GridRowHarnessFilters = {}): Promise<GridRowHarness[]> { |
no test coverage detected