Evaluate JavaScript with JSoup [duplicate]

As a response to my JSoup call I get a document like this

<body>
  <link rel="modulepreload" href="chunk-a.js">
  <link rel="modulepreload" href="chunk-b.js">
  <link rel="modulepreload" href="chunk-c.js">
</body

In the browser the Javascripts are getting executed on runtime and I see valid HTML. Is there a way to make Jsoup execute the Javascript, so I see the HTML result? Thanks in advance for your help