Chrome启动器退出并显示UnhandledPromiseRejectionWarning

时间:2019-03-20 21:15:39

标签: node.js google-chrome google-chrome-devtools google-chrome-headless

我正在尝试设置chrome-launcher以将所有控制台消息输出到终端。我的代码如下:

const chromeLauncher = require('chrome-launcher');
const CDP = require('chrome-remote-interface');

(async function() {
  async function launchChrome() {
    return await chromeLauncher.launch({
      chromeFlags: [
        '--window-size=1200,800',
        '--user-data-dir=/tmp/chrome-testing',
        '--auto-open-devtools-for-tabs'
      ]
    });
  }
  const chrome = await launchChrome();
  const protocol = await CDP({
    port: chrome.port
  });

  const {
    DOM,
    Network,
    Page,
    Runtime,
    Console
  } = protocol;

  await Promise.all([Network.enable(), Page.enable(), DOM.enable(), Runtime.enable(), Console.enable()]).catch(console.log);

  // REMARKS: messageAdded is fired every time a new console message is added
  Console.messageAdded((result) => {
    console.log(result);
  });

})();

我从这里的问题中复制了部分内容:How to get console.log output in Terminal via Headless Chrome Runtime.evaluate

当我尝试导航至页面时,终端中未显示任何控制台消息,并且Chrome启动器退出并显示以下错误:

(node:14531) UnhandledPromiseRejectionWarning: Error: connect ECONNREFUSED 127.0.0.1:64656
    at TCPConnectWrap.afterConnect [as oncomplete] (net.js:1083:14)
(node:14531) UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
(node:14531) [DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code. 

0 个答案:

没有答案