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