Hello.
We are testing with selenium and jest and the pattern we use to identify elements is through the use of data-* attributes. We are trying to follow this same pattern with the Kendo React components but, at least for the Grid component so far, any custom props that we pass in are ignored by the component. From a design pattern perspective I totally understand why this would happen but I am wondering if there is some way to achieve what is described below:
React Component
<Grid className="grid" data={data} data-testName="reactGrid" ...> ... </Grid>
Rendered Output
<div class="k-grid" data-testName="reactGrid">
...data...
</div>
Reading through the API documentation I couldn't seem to find anything.
Thanks!