Page content is loaded with JavaScript and Jsoup doesn’t see it

JSoup is an HTML parser, not some kind of embedded browser engine. This means that it’s completely unaware of any content that is added to the DOM by Javascript after the initial page load.

To get access to that type of content you will need an embedded browser component, there are a number of discussions on SO regarding that kind of component, eg Is there a way to embed a browser in Java?

Leave a Comment