I have an html table, for example:
<table ..... class="cars"> <tr class="item-odd"> ... </tr> <tr class="item-even"> </tr> </table>
How can I get table rows using xpath?
//tr[contains(@class, ???)
Is it possible to use OR in a sense to say item-odd | item-even
source share