I want to get the source code of a HTML page, but it has a JS script that loads the data dynamically and attaches the received content to the page.
I am using jsoup to parse HTML, but it only returns the content before the JS execution, so I do not receive the dynamically loaded data.
How can I get the source code after the script execution using any framework, cli, etc?