I came across a problem while scraping the comments from this link.
Using scrapy shell, I'm wondering why I cannot see the comments in this below div
section.
['<div id="eqWall" data-project-id="53481" data-is-platform-manager="" data-replies-allowed="1"></div>']
I got the above output by executing response.xpath("//section[@class='main-section pin-board-section']/div/div[@id='eqWall']").extract()
using scrapy shell "link"
Could anyone help me out why I cannot see and what is the solution to scrape the comments.
Thanks