Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have the following table layout in HTML (which changes accordingly):

<table class="other-table-style">

    <tr> 
      <th>First Name</th>
      <th>Last Name</th>
      <th>Age</th>
    </tr>
    <tr>
      <td align="center" width="30%">Joe</td>
      <td align="center" width="30%">Bloggs</td>
      <td align="center" width="40%">28</td>
    </tr>
    <tr>
      <td align="center" width="30%">John</td>
      <td align="center" width="30%">Doe</td>
      <td align="center" width="40%">30</td>
    </tr>

</table>

I want to be able to iterate through this using Selenium 2.0 WebDriver, but I have not been able to find any good examples.

Any help would be greatly appreciated.

share|improve this question
2  
What have you tried? Have a look at find_elements_by*() methods. – J.F. Sebastian Aug 21 '12 at 15:51
I've trying using find_elements_by_xpath, but i'm not getting anything back. I've tried this on just the table and that works. – williamtroup Aug 22 '12 at 12:27
Could you add a minimal code example that reproduces your problem? – J.F. Sebastian Aug 22 '12 at 13:06

3 Answers

It seems like the person who posed this related question had code that would get you on the right track.

for(WebElement trElement : tr_collection)
        {
            List<WebElement> td_collection=trElement.findElements(By.xpath("td"));
            System.out.println("NUMBER OF COLUMNS="+td_collection.size());
            col_num=1;          

            if(!td_collection.isEmpty() && td_collection.size() != 1 ){  
                for(WebElement tdElement : td_collection)
                {
                        System.out.println("Node Name=== " + tdElement.getAttribute("class")); 
                        System.out.println("Node Value=== " + tdElement.getText());
                    col_num++;
                }
            } // end if

            row_num++;
        }

EDIT:

I changed their code somewhat...they were accumulating the class of each td and the text it contained in a hashmap and then once they had gone through the entire table, adding that into a master hashmap. Also this is the JAVA variant of Selenium so you would have to port it over. The guts of it remain the same though - perhaps someone with more Selenium experience could give more info...I prefer to live over in WATIRland myself.

share|improve this answer

You can check my answer here on how to read from a table using selenium.

share|improve this answer
up vote 0 down vote accepted

Used:

from selenium.webdriver.common.by import By

trs = driver.find_elements(By.TAG_NAME, "tr") 

tds = trs[1].find_elements(By.TAG_NAME, "td")

This allows looping through each one to do as desired.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.