I need the following: If I send a GET Request like this:
page.open("<URL>",function (status) {
// If connection wasn't successful:
if (status !== 'success') {
console.log('Unable to access network');
} else {
console.log(page.content)
}
}
I get logged the page like when You right-click the page and click View Page Source.... I need it to be like when You open the developer tools inside Chrome and see the resulting page with all the javascript done. Is it possible?