Oct-10-2018, 05:35 PM
I just tried parsing that website using scrapy shell.
For some reason, css selectors fail, but xpath works without a problem:
For some reason, css selectors fail, but xpath works without a problem:
>>> len(response.css('div.sch')) 0 >>> len(response.xpath('//div[@class="sch"]')) 212