I have a variable that is a By class. I wish to call FindElements to return the corresponding element as well as all of the parent elements of this By. How do I do this?
|
feedback
|
|
If I understand your question correctly you want to find the You can just use XPath to get the parent element until you get to the page root. So something like this:
Optionally you can stop on the Also note that this is fairly slow, especially if its a deeply nested element. A faster alternative would be to use | |||
|
feedback
|