Objective: Scraping the text data from the div class list_area daily_all.
Using the scrapy shell, I have first "scraped" the website I want to scrape data from: https://comic.naver.com/webtoon/weekday.nhn
Using the 'scrapy shell' script:
scrapy shell 'https://comic.naver.com/webtoon/weekday.nhn'
And using xpath, I want to scrape all the text data from the div class "list_area daily_all":
response.xpath("//div[@id='wrap']/div[@id='container']/div[@class='list_area daily_all']/text()")
However, the above code does not return anything. What am I doing wrong?