How would I access DataGrid columns by thier names rather than indexes?
Say I have following grid
Name Age Designation
Mike 27 Developer
Louis 32 Manager
I can access the second row's "Age" cloumn value by finding the grid using RxPath and then accesing the rows and columns by indexes. But how would i do that by column names.
If I don't use the cloumn names my test would fail if I change the sequence of cloumns.