I'm working with Scrapy and lxml trees to sort out html trees.
I noticed that there is difference between these two xpath expressions. I was under the impression that they were interchangeable. Could someone please explain me the difference?
response.xpath('/html/body/div/table/tr/td/table/tr/td/table/tr/td/table/tr/td/table/tr/td/a/img/..//text()').extract()
response.xpath('/html/body/div/table/tr/td/table/tr/td/table/tr/td/table/tr/td/table/tr/td/a//text()').extract()