(rowIdx: number)
| 76 | } |
| 77 | |
| 78 | export function getCellsAtRowIndex(rowIdx: number) { |
| 79 | return Array.from( |
| 80 | document.querySelectorAll<HTMLDivElement>(`[aria-rowindex="${rowIdx + 2}"] > .rdg-cell`) |
| 81 | ); |
| 82 | } |
| 83 | |
| 84 | export function getCells() { |
| 85 | return page.getByRole('gridcell').elements(); |
no outgoing calls