* Returns the tree's cells if any. Can be filtered against a specific row if provided via * `element`.
(opts: {element?: HTMLElement} = {})
| 284 | * `element`. |
| 285 | */ |
| 286 | getCells(opts: {element?: HTMLElement} = {}): HTMLElement[] { |
| 287 | let {element = this.getTree()} = opts; |
| 288 | return within(element).queryAllByRole('gridcell'); |
| 289 | } |
| 290 | } |
no test coverage detected