Mathieu Suen
Mathieu Suen
It is often that you would like to assert the content of a tabular information To me a nice API would look like: ``` expect(screen.getByRole('cell', {row: 1, column: 1, name:...
cell is the more generic role of a [gridcell](https://w3c.github.io/aria/#gridcell) according to w3c
This let me think that we can also encourage the following [techniques](https://www.w3.org/WAI/WCAG21/Techniques/html/H43) using this API: ` expect(screen.getByRole('cell', {headers: ['a', 'b']})).toBeInDocument(); `