I have a webpage looks something like this:
<html>
...
<div id="menu">
...
<ul id="listOfItems">
<!--- repeated block start -->
<li id="item" class="itemClass">
...
<span class="spanClass"><span class="title">title</span></span>
...
</li>
<!-- repeated block end-->
<li id="item" class="itemClass">
...
<span class="spanClass"><span class="title">title something</span></span>
...
</li>
<li id="item" class="itemClass">
...
<span class="spanClass"><span class="title">title other thing</span></span>
...
</li>
</ul>
...
</div>
...
</html>
I would like to know what is the xpath of the titles ("title", "title something", "title other thing"). The point is that the order of the <li> elements are not specified. It could be different after every page loading. Is there any method how to discover a certain structure of the page with xpath? I have an notion about how to solve this issue, but before I'm going to write iterations with C# to discover the page I ask you.
Thanks in advance!

driver.findElements(By.xpath("//div//span[contains(@class, 'title'))that would work for this. Hopefully the C# API is similar. – ccoakley Feb 17 '12 at 16:05driver.findElements(By.xpath("//div[@id='menu']//span[contains(@class, 'title')]")). I prefer to use contains for css classes (though you should probably normalize the whitespace if you do) in case you add classes dynamically. I also try to select elements under something with a definitive id (either the menu div or the listOfItems ul) just to reduce bad matches. – ccoakley Feb 17 '12 at 18:46