I try to find a table row. First, I used Ranorex Spy, and try to use the following rXpath expression:
/dom[@domain='127.0.0.1']//table//td[@innertext='john.doe@acme.com']/../following-sibling::tr/.[1]
Ranorex Spy finds and highlights this tag successfully. But when I'm trying to find thiselement using Ranorex API, it returns no results. The code is following
// path is exactly rXpath expression which is used for Ranorex Spy
IList<Ranorex.Core.Element> elements = Host.Local.Find(path);
Can you tell me, where is my mistake or are there any issues with rXpath?