How do you screen scrape ajax pages?
|
feedback
|
|
Overview: All screen scraping first requires manual review of the page you want to extract resources from. When dealing with AJAX you usually just need to analyze a bit more than just simply the HTML. When dealing with AJAX this just means that the value you want is not in the initial HTML document that you requested, but that javascript will be exectued which asks the server for the extra information you want. You can therefore usually simply analyze the javascript and see which request the javascript makes and just call this URL instead from the start. Example: Take this as an example, assume the page you want to scrape from has the following script:
Then all you need to do is instead do an HTTP request to time.asp of the same server instead. Example from w3schools. Advanced scraping with C++: For complex usage, and if you're using C++ you could also consider using the firefox javascript engine SpiderMonkey to execute the javascript on a page. Advanced scraping with Java: For complex usage, and if you're using Java you could also consider using the firefox javascript engine for Java Rhino Advanced scraping with .NET: For complex usage, and if you're using .Net you could also consider using the Microsoft.vsa assembly. Recently replaced with ICodeCompiler/CodeDOM. | ||||
|
feedback
|
|
If you can get at it, try examining the DOM tree. Selenium does this as a part of testing a page. It also has functions to click buttons and follow links, which may be useful. | |||
feedback
|
|
Depends on the ajax page. The first part of screen scraping is determining how the page works. Is there some sort of variable you can iterate through to request all the data from the page? Personally I've used Web Scraper Plus for a lot of screen scraping related tasks because it is cheap, not difficult to get started, non-programmers can get it working relatively quickly. Side Note: Terms of Use is probably somewhere you might want to check before doing this. Depending on the site iterating through everything may raise some flags. | |||
|
feedback
|
|
I am currently trying to retrieve only visible text using BeautifulSoup... but I keep getting javascript and html cruft that I didn't really want... As alternative, I am playing with the idea of spawning a browser programmatically, sending cntr-c key presses to the process, and retrieving the text from the clipboard. I really like the idea working with rendered data as opposed to the source data. However, this might not help you if you need interact with the dom tree. Personally, I am not happy with the clipboard killing all of my concurrency.. My next step is looking at the Chrome source code... | |||
|
feedback
|
|
As a low cost solution you can also try SWExplorerAutomation (SWEA). The program creates an automation API for any Web application developed with HTML, DHTML or AJAX. | |||
|
feedback
|
|
Another best tool that lets us write scrappers on live DOM is solvent from MIT . http://simile.mit.edu/wiki/Solvent . Also promising is , Envjs at http://www.envjs.com/doc/guides . If your intention is to scrape to a high scale , you might need to introduce delays and mimic human behavior to avoid being banned by the service being scraped. | ||||
|
feedback
|
|
To deal with javascript, you must use a tool or write a program with browser core(ie, firefox or webkit), If you can write javascript, you can try:PhantomJS. If you like Python, you can try: PySide, or PyQt, They contain webkit can browser web page with javascript. If you want a tool for web scraping, you can try our production fminer, It developed with PySide, can scraping any dynamic pages with javascript, and can simulate user's action by record and playback macro. | |||
|
feedback
|
|
Another choice is to select a web scraping software, and I'm the owner of FMiner, you can try it - web scraping software - fminer. It can record and play macro to simulate human actions to scrape dynamic(ajax) pages. FMiner macro tutorial will show you how to use macro to scrape pages' contents with FMiner. | |||
|
feedback
|