Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have been using the java.net crawler for a custom built crawler. The problem is with dynamically generated content, like comments on a blog for example. Consider the following page http://www.avc.com/a_vc/2010/09/contrarian-investing.html . If you crawl the page and get the source, you can't view the entire content of the page. The reason I need the content is because I'm performing some keyword density calculations. Hence, I need my app to be able to see exactly what the browser would see. Any suggestions?

I've looked at apache's httpclient, however, that's the same as the above crawler, just returns the source. I think that particular page has a javascript piece that returns the comments from another domain, so I suppose what I need is to parse the source after downloading it, then getting the text. Any help is appreciated.

thanks

Sam

share|improve this question
are you asking if there's a pre-built crawler that automatically includes the content of embedded iframes into the parent document? – pstanton Sep 12 '10 at 22:10

2 Answers

Web testing APIs have JS support in them. HTTPUnit has some capacity to execute Javascript with Rhino I think. It's been a while since I've used it though and I seem to remember it not working as well. Alternatively, you can try Selenium RC, which I think is pretty powerful for that sort of thing but again, not sure if it solves your problem specifically.

Selenium - http://seleniumhq.org/projects/remote-control/ HTTPUnit - http://httpunit.sourceforge.net/

share|improve this answer

Try to use existent javascript engine (V8 from google or Rhino from mozilla) with timeout on execution time. But it is may be very hard. May be easier try to detect request url in javascript text and request it with crawler

share|improve this answer
I can certainly do the latter for this page, but how can I make the process human-free for all other pages? Is it correct to assume that all other pages will only have javascript type page generation as well? Presumably, anything else will be serverside, correct? – Sam Mohamed Sep 14 '10 at 11:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.