* Returns the columns within the table.
()
| 534 | * Returns the columns within the table. |
| 535 | */ |
| 536 | getColumns(): HTMLElement[] { |
| 537 | let headerRowGroup = this.getRowGroups()[0]; |
| 538 | return headerRowGroup ? within(headerRowGroup).queryAllByRole('columnheader') : []; |
| 539 | } |
| 540 | |
| 541 | /** |
| 542 | * Returns the rows within the table if any. Can be filtered to a specific row group if provided |
no test coverage detected