I want to scrape data from a page which loads DOM elements using Ajax call.
I have tried with the old solution line PyQt4-based scraping, which loads the DOM after it's fully loaded, but the problem is that I need to do a POST request and it's only available for GET.
The new Python module ghost.py has time out issues: when it fetches a large DOM tree it raises a time out exception.
If anyone knows any specific way or tools that can help me to do a POST request and grab the data after fully loaded DOM, that will help me a lot.