Forum Discussion
14 years ago
With Xpath unavailable I just using the
FindChild
method , and treat the contained of the whatever ur looking for as the object: my example for you looks like this:while (Page.FindChild("idStr", "bodyContent", 1000, true).Exists == false) { aqUtils.Delay(100);}
var vaaoa = Page.FindChild("idStr", "objectID", 1000, true);
vaaoa.FindChild("idStr", "objectID*", 1000, false).Click();
hope this helps