Search code examples
pythonseleniumhtml-tableelement

Get all table elements in Python using Selenium


I have a webpage which looks like this:

<table class="data" width="100%" cellpadding="0" cellspacing="0">
    <tbody>
        <tr>
            <th>1</th>
            <th>2</th>
            <th>3 by</th>
        </tr>
        <tr>
            <td width="10%"><a href="foo1">5120432</a></td>
            <td width="70%">INTERESTED_SITE1/</td>
            <td width="20%"><a href="foo2">foo2</a></td>
        </tr>
        <tr class="alt">
            <td width="10%"><a href="foo1">5120431</a></td>
            <td width="70%">INTERESTED_SITE2</td>
            <td width="20%"><a href="foo2">foo2</a></td>
        </tr>
    </tbody>
</table>

I want to put those two sites somewhere (interested_site1 and interested_site2). I tried doing something like this:

chrome = webdriver.Chrome(chrome_path)
chrome.get("fooSite")
time.sleep(.5)

alert = chrome.find_element_by_xpath("/div/table/tbody/tr[2]/td[2]").text
print (alert)

But I can't find the first site. If I can't do this in a for loop, I don't mind getting every link separately. How can I get to that link?


Solution

  • It would be easier to use a CSS query:

    driver.find_element_by_css_selector("td:nth-child(2)")