I have a site with elements of the form:
<td id="subject_23432423">content I want to read</td>
How do I use Selenium RC (with the Python bindings specifically) to read the content from all these elements? I've gone through all the commands, and while there's a lot of options to find a single element, none of the commands seem to handle lists of multiple matches. For example, I can find the content of a specific element using:
content = sel.get_text("td[@id='subject_23432423']")
but this assumes I already know the id, which I don't because it's generated dynamically.