I'm new to Python Scrapy module. I'm trying to scrape the restaurants' info on https://munchado.com/search?sst=a&fb=m&vt=s&svt=l&in=New%20York%2C%20NY%2C%20USA&at=c&lat=40.7127&lng=-74.0059&p=0&srb=r&srt=d&sq=american&sdt=ft&ovt=restaurant&d=0&st=d
While I have some successful experience in scraping on other webpages, this one is really a trouble. It seems that the restaurants' info is loaded automatically when you deliver a search request. By that I mean the info is not written in the webpage's source code, and could possibly come from the company's inside server or something. And the directories changes by time. For example, if you search in the evening, some directories change their name from "div class='t-has-deals'" to "div class='t-closed-now'".
So my question is: is it still possible to scrape info from such webpages. If this matter belongs to scraping dynamic content, is there a universal way to solve this? Thank you so much.