So i just want to open a webpage , but a big part of it are scripts read by the browser...
<!DOCTYPE html>
<html>
  <head>
    <meta http-equiv='Content-type' content='text/html; charset=utf-8'>
    <title>MyAccount</title>
    <link rel="stylesheet" href="/vendor.css" />
    <link rel="stylesheet" href="/app.css" />
  </head>
  <body>
    <div id="container">
    // Here is the rest generated by the script. On chrome i can see it easily (inspect element)
    </div>
    <script type="text/javascript">
        window.myAccountUrl = "http://urlsample";
    </script>
    <script type="text/javascript" src="/vendor.js"></script>
    <script type="text/javascript" src="/app.js"></script>
    <script type="text/javascript" src="/init.js"></script>
  </body>
</html>
but with casper nothing appear in it. I use this settings:
pageSettings: {
        loadImages:  true,    
        loadPlugins: true,
        javascriptEnabled: true,
        localToRemoteUrlAccessEnabled: true,
        XSSAuditingEnabled: true
    }
And i render the html like that:
var js = this.evaluate(function() {
    return document; 
});
this.echo(js.all[0].outerHTML); 
If anyone can help me, he's welcome. :)