I am trying to force the following page to load completely:
http://v3.torontomls.net/Live/Pages/Public/Link.aspx?Key=f7aa9fac8a5b45ed9f3baa480373d09a&App=TREB
The problem I am having is that there are dynamix AJAX elements on the page that only load if/when they are scrolled into view.
I have tried using javascript:window.scrollTo(0, document.body.scrollHeight)
but that seems to jump to the end of the page and doesn't load the complete page.
After the page is loaded completely, then I plan to save the document text and do some regex, but I can't begin that until I am certain that all of the page has been scrolled into view and therefore loaded.
Any ideas?