Populate Doc Only After The Page Is Completely Loaded
I am retrieving data form a certain website. The inside is available only after the page is completely loaded i.e.javascript adds the tag to the pag
Solution 1:
You need instead a HTML parser which can execute JavaScript. HtmlUnit is such one, it's a GUI-less webbrowser designed for unit-testing purposes and is capable of executing JavaScript contained in the webpage which may modify the HTML DOM tree. You could try using it instead.
Post a Comment for "Populate Doc Only After The Page Is Completely Loaded"