I want to know if the DOM that I get from Jsoup
Document doc = Jsoup.connect(page.getPageUrl()).get();
Will it be same as the DOM I get from the browser (just after loading)? In other words, if there are any DOM manipulation done by the javascript during onload() method, will it happen before the dom is returned by Jsoup ?