Can I get http page as seen in browser - fully formed after javascripts are run? No need to submit data and press buttons. IMHO it's standard task, where can I see example to run all scripts and get result?
Via:
u = urllib.request.urlopen('https://www.*')
data = u.read()
I get page as seen if I choose view source in browser. However, when I inspect elements on page, I see how code expands, e.g.:
<div class="js-events-container"></div>
expands to:
<div class="js-events-container"> <table class="zebra noBorderTbl" style="width: 100%;">
<tbody><tr>
<th>1</th>
<th>2</th>
<th>3</th>
</tr>
...
</tr>
</tbody></table>
</div>