I'm still new in web scraping and I have this question related to Webdriver.
Code Exemple :
<table>
    <tbody>
        <tr>
            <td> car </td>
            <td> bus </td>
        </tr>
       <tr>
            <td> car </td>
            <td> bus & train </td>
        </tr>
       <tr>
            <td> car </td>
            <td> bus & plane </td>
        </tr>
    </tbody>
</table>
<table>
    <tbody>
        <tr>
            <td> food </td>
            <td> meat</td>
        </tr>
       <tr>
            <td> drink </td>
            <td> water </td>
        </tr>
    </tbody>
</table>
So the idea is that in my original code, I have multiple tables with the same ID and class names.
Question : How can i proceed to extract all the TRs that contains the word "bus".
I can't find the correct xpath syntax to use.
 
     
     
    