Headless Java HTTP client for scanning?

I was looking for a crawl tool written in Java to detect an invalid URL on our sites.

The difficulty is that most of the URL is executed using javaScript, CSS3 and Ajax. So just getting the contents of the website URL will not.

An ideal would be a headless tool that could execute javaScript, CSS style and AJAX calls and spit out the different URL that it accessed.

I understand that this is a high order, but perhaps it exists somewhere?

+4
source share
2 answers

I suggest using http://htmlunit.sourceforge.net/ , which is done for these things.

+7
source

All Articles