<div id="content">
foo <br/>
bar <br/>
</div>
I am trying to get the inner text of the content
div above with the following:
response.xpath('//div[@id ="content"]').extract()
this gives me the following:
[u'<div id="content"> foo<br/>bar <br/></div>
How can I get:
foo<br/>bar</br>