I'm trying to us Xpath to get the text in the example below the "7061 MAIN ST"
<TD ROWSPAN="2">
<FONT FACE="Arial,helvetica" SIZE="-1">
7061 MAIN ST
</FONT>
</TD>
However it's not working well for me. I tried the following below and it won't work. On a search in the source that's the only one that has the attribute Rowspan="2"
searchResults = tree.xpath('//*[@rowspan="2"]/@text')
self.response.out.write(searchResults)
searchResults = tree.xpath('//*[@rowspan="2"]/font/@text')
self.response.out.write(searchResults)
searchResults = tree.xpath('//*[@rowspan="2"]/font[text()]')
self.response.out.write(searchResults)
What shoudl i do to get the text?
Thanks!