I would like to have all the text visible from a website, after the HTML is rendered. I\'m working in Python with Scrapy framework. With xpath(\'//body//text()\')
xpath(\'//body//text()\')
Have you tried?
xpath('//body//text()').re('(\w+)')
OR
xpath('//body//text()').extract()