I need to connect to a web site, download the home page, then search for a particular link within.
I have achieved this, however the link I require is dynamically generated when the page loads using javascript, so my html parser in Java cannot see it.
If anyone knows how to load a HTML file and execute the javascript in Java, please let me know
Try to analyze the javascript which loads the link, maybe you can find a way of getting the link without running the actual script.
(I do not know how to run javascript in Java nor if its even possible)