Search found 1 match

by sebokdavid90
Thu Jul 18, 2019 9:38 am
Forum: Object Identification and Technologies
Topic: XPath code for "Most Recent Ancestor", and other keywords
Replies: 7
Views: 3735

Re: XPath code for "Most Recent Ancestor", and other keywords

What I use in these cases is the following: /ancestor::tag[@class='anything'] where tag = div, list, button, anything you can use in ranorexpath. and class can be any attribute like class, id, innertext etc. This finds the ancestor with the specified attribute skipping any ui element in the middle H...