I am trying to crawl few pages from monsterindia.com. But whenever I write any xpath on scrapy shell, it gives me empty result. However, there should be some way because view(response) command gives me the same html page.
I ran this command :
scrapy shell "https://www.monsterindia.com/search/computer-jobs"
on my terminal and then tried several ways formulating different xpaths like - response.xpath('//*[@class="job-tittle"]/text()').extract()
. But no luck .. always got empty result.
on terminal:
scrapy shell "https://www.monsterindia.com/search/computer-jobs"
then, response.xpath('//div[@class="job-tittle"]/text()').extract()
got empty result.
then, response.xpath('//*[@class="card-apply-content"]/text()').extract()
got empty result.
I expect it to give some results, I mean the text from the website after crawling. Please help me with it.