WCT无法在Redhat Linux中检测谷歌浏览器浏览器

时间:2018-04-25 12:45:45

标签: selenium-chromedriver redhat polymer-2.x wct

运行

时,WCT无法在Redhat Linux中检测到谷歌浏览器浏览器

polymer test --skip-selenium-install

并抛出以下错误:

cli runtime exception: Error: {"value":{"stacktrace":"org.openqa.selenium.WebDriverException: unknown error: Chrome failed to start: crashed\n  (Driver info: chromedriver\u003d2.37.544315 (730aa6a5fdba159ac9f4c1e8cbc59bf1b5ce12b7),platform\u003dLinux 3.10.0-693.21.1.el7.x86_64 x86_64) (WARNING: The server did not provide any stacktrace information)\nCommand duration or timeout: 60.11 seconds\nBuild info: version: \u00273.8.1\u0027, revision: \u00276e95a6684b\u0027, time: \u00272017-12-01T19:05:32.194Z\u0027\nSystem info: host: \u0027user-docker\u0027, ip: \u0027172.18.0.2\u0027, os.name: \u0027Linux\u0027, os.arch: \u0027amd64\u0027, os.version: \u00273.10.0-693.21.1.el7.x86_64\u0027, java.version: \u00271.8.0_162\u0027\nDriver info: driver.version: unknown\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)\n\tat sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
    at next (native)
    at fulfilled (/home/user/IdeaProjects/project/node_modules/web-component-tester/runner/steps.js:4:58)
    at process._tickCallback (internal/process/next_tick.js:109:7)
  

我们正在使用码头工人容器

我在下面尝试过,但没有一个正在工作

  1. 聚合物测试 - 本地铬

  2. sudo ln -s / usr / bin / google-chrome-stable / usr / bin / google-chrome

  3. 导出LAUNCHPAD_CHROME = / usr / bin / google-chrome-stable

  4. 版本信息:

    Redhat 7.3
    聚合物:v2.0.0
    webcomponents:v1.0.0
    聚合物-cli:1.5.6

    我打开了github issue

1 个答案:

答案 0 :(得分:0)

我尝试进一步调试,发现我们无法在Docker容器中启动google-chrome,导致错误Failed to move to new namespace: PID namespaces supported, Network namespace supported, but failed: errno = Operation not permitted Trace/breakpoint trap (core dumped)

因此,在调查问题时,我发现chrome中存在一个问题,阻止chrome在docker环境中启动。 run google chrome headless in docker

现在我已经设法解决了这个问题。

我正在使用配置文件进行WCT并在配置文件中传递--no-sandbox选项。

所以现在WCT正在推出google-chrome

我的wct.conf.json文件是

{
  "plugins": {
    "local": {
      "browsers": [
        "chrome"
      ],
      "browserOptions": {
        "chrome": [
          "--no-sandbox"
        ]
      }
    }
  }
}