为什么Web组件测试器在飞行模式下超时?

时间:2017-08-16 13:52:44

标签: node.js selenium dns windows-10 web-component-tester

我有一个基本的网络组件测试项目,当我在线时工作正常。

如果我切换到飞行模式,它似乎无法连接到Selenium,而是在大约60秒延迟后给出一个很大程度上无用的错误消息:“错误:无法连接到selenium”。

编辑2 :我在以下问题中缩小了问题,但我仍然想知道如何使用网络组件测试器来避免这个问题:

编辑:经过一番挖掘后,它与在飞行模式下selenium-standalone下面的某个地方的DNS解析器有关,而与网络组件测试器没什么关系。

在将一些调试日志记录插入selenium-standalone之后,我检查了故障点,检查Selenium是否正在运行。在线时,这种方法很好,但离线时我得到:

// check-started.js, logging the error inside the request() call:
Error: getaddrinfo ENOENT localhost:60435
    at Object.exports._errnoException (util.js:1022:11)
    at errnoException (dns.js:33:15)
    at GetAddrInfoReqWrap.onlookup [as oncomplete] (dns.js:76:26)

以下似乎描述了类似的情况,但我没有看到如何说服selenium-standalone或web-component-tester指定IP地址系列甚至尝试建议的解决方案:

我的原文如下。

完整的错误日志和wct.conf.json如下。如果有帮助的话,我也可以提供package.json和bower.json。

我在Windows 10上。

wct.conf.json:

{
  "verbose": true,
  "plugins": {
    "local": {
      "skipSeleniumInstall": true,
      "browsers": ["chrome"]
    },
    "sauce": {
      "disabled": true
    }
  }
}

错误日志:

> color-curve@0.0.1 test C:\Users\Dave\projects\infinity-components\color-curve
> standard "**/*.html" && wct -l chrome

step: loadPlugins
step: configure
hook: configure
Expanded local browsers: [ 'chrome' ] into capabilities: [ { browserName: 'chrome',
    version: '60',
    chromeOptions: 
     { binary: 'C:\\Program Files (x86)\\Google\\Chrome\\Application\\chrome.exe',
       args: [Object] } } ]
configuration: { suites: [ 'test/index.html' ],
  verbose: true,
  quiet: false,
  expanded: false,
  testTimeout: 90000,
  persistent: false,
  extraScripts: [],
  clientOptions: { root: '/components/', verbose: true },
  compile: 'auto',
  activeBrowsers: [ { browserName: 'chrome', version: '60', chromeOptions: [Object] } ],
  browserOptions: {},
  plugins: 
   { local: 
      { disabled: false,
        skipSeleniumInstall: true,
        browsers: [Object],
        seleniumArgs: [] },
     sauce: { disabled: true } },
  registerHooks: [Function: registerHooks],
  enforceJsonConf: false,
  webserver: 
   { hostname: 'localhost',
     _generatedIndexContent: '<!doctype html>\n<html>\n  <head>\n    <meta charset="utf-8">\n    <script>WCT = {"root":"/components/","verbose":true};</script>\n    <script>window.__generatedByWct = true;</script>\n    <script src="../web-component-tester/browser.js"></script>\n\n    <script src="../web-component-tester/data/a11ySuite.js"></script>\n</head>\n  <body>\n    <script>\n      WCT.loadSuites(["test/index.html"]);\n    </script>\n  </body>\n</html>\n' },
  root: 'C:\\Users\\Dave\\projects\\infinity-components\\color-curve',
  _: [],
  origSuites: [ 'test/' ] }
hook: prepare
hook: prepare:selenium
Starting Selenium server for local browsers
INFO - Selenium build info: version: '3.0.1', revision: '1969d75'
INFO - Launching a standalone Selenium Server
INFO::main: Logging initialized @222ms
INFO - Driver class not found: com.opera.core.systems.OperaDriver
INFO - Driver provider com.opera.core.systems.OperaDriver registration is skipped:
Unable to create new instances on this machine.
INFO - Driver class not found: com.opera.core.systems.OperaDriver
INFO - Driver provider com.opera.core.systems.OperaDriver is not registered
INFO - Driver provider org.openqa.selenium.safari.SafariDriver registration is skipped:
 registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform WIN10
INFO:osjs.Server:main: jetty-9.2.15.v20160210
INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@100fc185{/,null,AVAILABLE}
INFO:osjs.ServerConnector:main: Started ServerConnector@2922e2bb{HTTP/1.1}{0.0.0.0:51126}
INFO:osjs.Server:main: Started @419ms
INFO - Selenium Server is up and running
INFO - Selenium build info: version: '3.0.1', revision: '1969d75'
INFO - Launching a standalone Selenium Server
INFO::main: Logging initialized @222ms
INFO - Driver class not found: com.opera.core.systems.OperaDriver
INFO - Driver provider com.opera.core.systems.OperaDriver registration is skipped:
Unable to create new instances on this machine.
INFO - Driver class not found: com.opera.core.systems.OperaDriver
INFO - Driver provider com.opera.core.systems.OperaDriver is not registered
INFO - Driver provider org.openqa.selenium.safari.SafariDriver registration is skipped:
 registration capabilities Capabilities [{browserName=safari, version=, platform=MAC}] does not match the current platform WIN10
INFO:osjs.Server:main: jetty-9.2.15.v20160210
INFO:osjsh.ContextHandler:main: Started o.s.j.s.ServletContextHandler@100fc185{/,null,AVAILABLE}
INFO:osjs.ServerConnector:main: Started ServerConnector@2922e2bb{HTTP/1.1}{0.0.0.0:51126}
INFO:osjs.Server:main: Started @419ms
INFO - Selenium Server is up and running

Error: Unable to connect to selenium

0 个答案:

没有答案