1

当我使用 https 无头运行测试时,出现以下错误

bash Error: move target out of bounds: Failed to read the 'localStorage' property from 'Window': Access is denied for this document.

在没有 --headless 选项的情况下运行,它可以工作但速度较慢。使用 --headless 作为 http 运行也可以

  • CodeceptJS 版本:最新
  • NodeJS 版本:4.2.6
  • 操作系统:薄荷
  • WebDriverIO:最​​新
  • 配置文件:

```json

{
  "tests": "./**/*_test.js",
  "timeout": 10000,
  "output": "output",
  "helpers": {
    "WebDriverIO": {
      "smartWait": 50,
      "url": "https://172.17.0.1/",
      "browser": "chrome",
      "restart": false,
      "desiredCapabilities": {
        "chromeOptions": {
          "args":[
                  "--window-size=1200,1200",
                  "--headless"]
        }
      }
    }
  },
  "include": {
    "I": "./steps_file.js",
    "loginPage": "./pages/Login.js",
    "defaultData": "./Data/defaultData.js",
    "registerPage": "./pages/Register.js",
    "menu": "./pages/Menus.js",
    "profilePage": "./pages/Profile.js",
    "subscription": "./pages/Subscription.js",
    "recordsPage": "./pages/Records.js"
  },
  "bootstrap": true,
  "name": "CodeceptJS",
  "plugins": {
    "allure": {
      "enabled": "true"    }
  }
}

```

4

2 回答 2

1

指定窗口大小时,请尝试使用x逗号 ( ) 代替。,例子:

--window-size=1920x1080
于 2018-09-27T16:14:49.477 回答
0

也许这与此有关:

https://www.chromium.org/for-testers/bug-reporting-guidelines/uncaught-securityerror-failed-to-read-the-localstorage-property-from-window-access-is-denied-for-this-文档

您可以创建 Chrome 配置文件,您将在其中关闭此选项并通过提供运行参数 ( https://chromium.googlesource.com/chromium/src/+/HEAD/docs/user_data_dir.md ) 加载它:

"chromeOptions": {
      "args":[
              "--window-size=1200,1200",
              "--headless",
              "--user-data-dir=<YOURDIR>]
    }

您可以检查无头的 UserAgent 字符串是否与普通浏览器不同的另一种解决方案,如果答案是肯定的,则使用 (Chrome 69 UA) 覆盖它:

    "chromeOptions": {
      "args":[
              "--window-size=1200,1200",
              "--headless",
              "--user-agent="Mozilla/5.0 AppleWebKit (KHTML, like Gecko) Chrome/69.0 Safari"]
    }

最后一个是通过提供参数来关闭安全策略:

  • --禁用网络安全
  • --allow-running-insecure-content

    "chromeOptions": {
      "args":[
              "--window-size=1200,1200",
              "--headless",
              "--disable-web-security",
              "--allow-running-insecure-content"]
    }
    

您可以尝试其中一种可能的解决方案或将它们组合起来。

于 2018-10-04T22:15:41.173 回答