javascript - Missing requests from phantomjs network monitoring results -


The

I have built a web application that AngularJS I sniffing all the requests coming from the web page load I am using phatomaz network monitoring. I receive the following list of requests:

  "https: ... / assets / application bf61473a35661d960c262995b314b0af.css" "https: ... / assets / lib / modernizr-c569e351684c78953f5f6298b4e1e485.js" "https: ... / assets / application -04936 fc61dbebda777c3f816afa39726.js" "https://www.google-analytics.com/analytics.js" "https://ssl.google-analytics.com/ga.js" " https: ... / assets / app_install_page_header-a4b182016c1769bad626d1409b6c95f1.png "" https: ... / assets / app_install_page_landing_text-14a162dca43a9a84b9fe0a7a77472fad.png " 
the problem is not included in the list

  • Request for photos follow the dye backend Th is;

  • ...
  • I've used a waitFor method for taking the time to wait for the order phantomjs delay requests, but it Did not help

    I have used this documentation.

    code:

      var page = is required ('webpage'). Create (); (: '+ Msgid' in '+ + Sourceid +' (line + from '+ lineNum +)' 'console'); Page.onConsoleMessage = function (message, lineNum, sourceid) {console.log}; Page Enter = function (msg, trace) {var msgstack = ['error:' + msg + trace]; Console.error (msgStack.join ('\ n')); }; Page OnResourceRequested = function (request) {url = request.url console.log (url); }; Page. Iterative = function (response) {console.log ('received:' + JSON.stringify (feedback, undefined, 4)); }; Page.onLoadFinished = function () {page.render ("on_finish.png"); }; Page.open (address, function (position) {setTimeout (function ()} {phantom.exit ();}, 15000);});  

    It seems that you have an http site that uses itself as an analysis of https Does.
    Recently, the PULLELE vulnerability forced website owners to disable SSLv3. Font mags & lt; V1.9.8 uses SSLv3 by default, due to a handshake failure analytics and additional scripts can not be loaded. Therefore, the following requests can not run because the script does not even reach the browser.

    Since PhantomJS 1.9.8 is set to the default protocol TLSv1, but passing can be set manually for older versions - ssl-protocol = tlsv1 As a command line option. View More.

    This can be checked by entering an event handler. Something like the SSL handshake failed in the error message.


    Comments

    Popular posts from this blog

    java - Can't add JTree to JPanel of a JInternalFrame -

    javascript - data.match(var) not working it seems -

    javascript - How can I pause a jQuery .each() loop, while waiting for user input? -