Phantomjs等待WebSocket连接

时间:2018-07-13 10:32:00

标签: javascript

我有html页面,在页面上我有几个js脚本。其中之一连接到websocket并传递数据。我尝试用phantomjs使请求获取页面。一切正常,但未启动与套接字的连接。如何等待直到未连接插座?

var page = require('webpage').create(),
    url = 'http://www.mikosoft.info';

page.open(url, function(status) {
  console.log(status);
      if(status === 'success') {

          var title = page.evaluate(function() {
            return document.title;
          });

          console.log('Page title is: '+title);
      }
      else console.log('404 Not found: '+url);



  phantom.exit();
});

0 个答案:

没有答案