Hi
When i try to spy a cell in a table only the entire table row is hilighted and the cell is not highlited.
In the Ranorex Spy Element Browser the row element is displayed as collapsed and when expanded i am able to see each cell properties with their xpaths. Now when i try to use this xpath to identify and click on the cell ranorex fails to click on the cell
I tried the gollowing
1) Ranorex.Cell cl = <xpath of the cell>
cl.click()
2) Ranorex.Table tab = <xpath of table>
Ranorex.Cell = tab.FindSingle(".//cell[@accessiblename='Row 3']");
Cell.click()
but it is not working with the above