Selenide + Chrome headless = пустая html вместо нормальной страницы

Не адекватно работают тесты в headless режиме Chrome.
До того как пробовать я отладил их в визуальном режиме - все работает на ура.
Теперь пытаюсь запустить в headless и получаю ошибку на первом же локаторе.
В результатах вижу только вот такую страницу:

<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body></body></html>

Тесты написаны с использованием Selenide.
Настройки запуска следующие:

        Configuration.browser="chrome";
        Configuration.headless=true;
        //Configuration.holdBrowserOpen=true;
        Configuration.baseUrl="https://someurl:9443/someres/";
        Configuration.startMaximized=true;
        Configuration.timeout=20000;

Версии библиотек из конфига гредла.
testCompile group: ‘org.junit.jupiter’, name: ‘junit-jupiter-engine’, version: ‘5.2.0’
compile group: ‘org.seleniumhq.selenium’, name: ‘selenium-chrome-driver’, version: ‘3.12.0’
testCompile ‘com.codeborne:selenide:4.12.1’

Подскажите, где хоть копать? Что то вообще никаких идей нет.

Добавлю полный лог этого безобразия:

SLF4J: Failed to load class "org.slf4j.impl.StaticLoggerBinder".
SLF4J: Defaulting to no-operation (NOP) logger implementation
SLF4J: See http://www.slf4j.org/codes.html#StaticLoggerBinder for further details.
Starting ChromeDriver 2.40.565498 (ea082db3280dd6843ebfb08a625e3eb905c4f5ab) on port 7525
Only local connections are allowed.
[1531844975.390][INFO]: COMMAND InitSession {
   "capabilities": {
      "desiredCapabilities": {
         "acceptSslCerts": true,
         "browserName": "chrome",
         "goog:chromeOptions": {
            "args": [ "--headless", "--disable-gpu" ],
            "extensions": [  ]
         },
         "pageLoadStrategy": "normal"
      },
      "firstMatch": [ {
         "browserName": "chrome",
         "goog:chromeOptions": {
            "args": [ "--headless", "--disable-gpu" ],
            "extensions": [  ]
         },
         "pageLoadStrategy": "normal"
      } ]
   },
   "desiredCapabilities": {
      "acceptSslCerts": true,
      "browserName": "chrome",
      "goog:chromeOptions": {
         "args": [ "--headless", "--disable-gpu" ],
         "extensions": [  ]
      },
      "pageLoadStrategy": "normal"
   }
}
[1531844975.393][INFO]: Populating Preferences file: {
   "alternate_error_pages": {
      "enabled": false
   },
   "autofill": {
      "enabled": false
   },
   "browser": {
      "check_default_browser": false
   },
   "distribution": {
      "import_bookmarks": false,
      "import_history": false,
      "import_search_engine": false,
      "make_chrome_default_for_user": false,
      "skip_first_run_ui": true
   },
   "dns_prefetching": {
      "enabled": false
   },
   "profile": {
      "content_settings": {
         "pattern_pairs": {
            "https://*,*": {
               "media-stream": {
                  "audio": "Default",
                  "video": "Default"
               }
            }
         }
      },
      "default_content_setting_values": {
         "geolocation": 1
      },
      "default_content_settings": {
         "geolocation": 1,
         "mouselock": 1,
         "notifications": 1,
         "popups": 1,
         "ppapi-broker": 1
      },
      "password_manager_enabled": false
   },
   "safebrowsing": {
      "enabled": false
   },
   "search": {
      "suggest_enabled": false
   },
   "translate": {
      "enabled": false
   }
}
[1531844975.395][INFO]: Populating Local State file: {
   "background_mode": {
      "enabled": false
   },
   "ssl": {
      "rev_checking": {
         "enabled": false
      }
   }
}
[1531844975.409][INFO]: Launching chrome: "C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" --disable-background-networking --disable-client-side-phishing-detection --disable-default-apps --disable-gpu --disable-hang-monitor --disable-popup-blocking --disable-prompt-on-repost --disable-sync --disable-web-resources --enable-automation --enable-logging --force-fieldtrials=SiteIsolationExtensions/Control --headless --ignore-certificate-errors --load-extension="C:\Users\RRUMYA~1\AppData\Local\Temp\scoped_dir6884_1321\internal" --log-level=0 --metrics-recording-only --no-first-run --password-store=basic --remote-debugging-port=0 --test-type=webdriver --use-mock-keychain --user-data-dir="C:\Users\RRUMYA~1\AppData\Local\Temp\scoped_dir6884_8645" data:,
[1531844975.518][DEBUG]: DevTools request: http://localhost:55636/json/version
[1531844975.824][DEBUG]: DevTools response: {
   "Browser": "HeadlessChrome/67.0.3396.99",
   "Protocol-Version": "1.3",
   "User-Agent": "Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/67.0.3396.99 Safari/537.36",
   "V8-Version": "6.7.288.46",
   "WebKit-Version": "537.36 (@a337fbf3c2ab8ebc6b64b0bfdce73a20e2e2252b)",
   "webSocketDebuggerUrl": "ws://localhost:55636/devtools/browser/610d4479-7ecd-425b-bc56-b4d917e3f3c8"
}

[1531844975.825][DEBUG]: DevTools request: http://localhost:55636/json
[1531844975.827][DEBUG]: DevTools response: [ {
   "description": "",
   "devtoolsFrontendUrl": "/devtools/inspector.html?ws=localhost:55636/devtools/page/EE3CB0CECE8119AA4E7C19E60213044C",
   "id": "EE3CB0CECE8119AA4E7C19E60213044C",
   "title": "data:,",
   "type": "page",
   "url": "data:,",
   "webSocketDebuggerUrl": "ws://localhost:55636/devtools/page/EE3CB0CECE8119AA4E7C19E60213044C"
} ]

[1531844975.827][DEBUG]: DevTools request: http://localhost:55636/json
[1531844975.829][DEBUG]: DevTools response: [ {
   "description": "",
   "devtoolsFrontendUrl": "/devtools/inspector.html?ws=localhost:55636/devtools/page/EE3CB0CECE8119AA4E7C19E60213044C",
   "id": "EE3CB0CECE8119AA4E7C19E60213044C",
   "title": "data:,",
   "type": "page",
   "url": "data:,",
   "webSocketDebuggerUrl": "ws://localhost:55636/devtools/page/EE3CB0CECE8119AA4E7C19E60213044C"
} ]

[1531844975.834][INFO]: resolved localhost to ["::1","127.0.0.1"]
[1531844976.836][DEBUG]: DEVTOOLS COMMAND Log.enable (id=1) {

}
[1531844976.837][DEBUG]: DEVTOOLS COMMAND DOM.getDocument (id=2) {

}
[1531844976.837][DEBUG]: DEVTOOLS COMMAND Target.setAutoAttach (id=3) {
   "autoAttach": true,
   "waitForDebuggerOnStart": false
}
[1531844976.837][DEBUG]: DEVTOOLS COMMAND Page.enable (id=4) {

}
[1531844976.838][DEBUG]: DEVTOOLS COMMAND Page.enable (id=5) {

}
[1531844976.839][DEBUG]: DEVTOOLS RESPONSE Log.enable (id=1) {

}
[1531844976.840][DEBUG]: DEVTOOLS RESPONSE DOM.getDocument (id=2) {
   "root": {
      "backendNodeId": 2,
      "baseURL": "data:,",
      "childNodeCount": 1,
      "children": [ {
         "attributes": [  ],
         "backendNodeId": 3,
         "childNodeCount": 2,
         "children": [ {
            "attributes": [  ],
            "backendNodeId": 4,
            "childNodeCount": 0,
            "localName": "head",
            "nodeId": 3,
            "nodeName": "HEAD",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 2
         }, {
            "attributes": [  ],
            "backendNodeId": 5,
            "childNodeCount": 0,
            "localName": "body",
            "nodeId": 4,
            "nodeName": "BODY",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 2
         } ],
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "localName": "html",
         "nodeId": 2,
         "nodeName": "HTML",
         "nodeType": 1,
         "nodeValue": "",
         "parentId": 1
      } ],
      "documentURL": "data:,",
      "localName": "",
      "nodeId": 1,
      "nodeName": "#document",
      "nodeType": 9,
      "nodeValue": "",
      "xmlVersion": ""
   }
}
[1531844976.840][DEBUG]: DEVTOOLS RESPONSE Target.setAutoAttach (id=3) {

}
[1531844976.840][DEBUG]: DEVTOOLS RESPONSE Page.enable (id=4) {

}
[1531844976.840][DEBUG]: DEVTOOLS RESPONSE Page.enable (id=5) {

}
[1531844976.840][DEBUG]: DEVTOOLS COMMAND Runtime.enable (id=6) {

}
[1531844976.846][DEBUG]: DEVTOOLS EVENT Runtime.executionContextCreated {
   "context": {
      "auxData": {
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "isDefault": true
      },
      "id": 1,
      "name": "",
      "origin": "://"
   }
}
[1531844976.846][DEBUG]: DEVTOOLS RESPONSE Runtime.enable (id=6) {

}
[1531844976.846][DEBUG]: DEVTOOLS COMMAND Page.enable (id=7) {

}
[1531844976.848][DEBUG]: DEVTOOLS RESPONSE Page.enable (id=7) {

}
[1531844976.848][DEBUG]: DEVTOOLS COMMAND Runtime.enable (id=8) {

}
[1531844976.850][DEBUG]: DEVTOOLS RESPONSE Runtime.enable (id=8) {

}
[1531844976.851][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=9) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844976.857][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=9) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": 1
      }
   }
}
[1531844976.857][INFO]: RESPONSE InitSession {
   "acceptInsecureCerts": false,
   "acceptSslCerts": false,
   "applicationCacheEnabled": false,
   "browserConnectionEnabled": false,
   "browserName": "chrome",
   "chrome": {
      "chromedriverVersion": "2.40.565498 (ea082db3280dd6843ebfb08a625e3eb905c4f5ab)",
      "userDataDir": "C:\\Users\\RRUMYA~1\\AppData\\Local\\Temp\\scoped_dir6884_8645"
   },
   "cssSelectorsEnabled": true,
   "databaseEnabled": false,
   "handlesAlerts": true,
   "hasTouchScreen": false,
   "javascriptEnabled": true,
   "locationContextEnabled": true,
   "mobileEmulationEnabled": false,
   "nativeEvents": true,
   "networkConnectionEnabled": false,
   "pageLoadStrategy": "normal",
   "platform": "Windows NT",
   "rotatable": false,
   "setWindowRect": true,
   "~~~": "..."
}
июл 17, 2018 7:29:36 PM org.openqa.selenium.remote.ProtocolHandshake createSession
INFO: Detected dialect: OSS
июл 17, 2018 7:29:36 PM com.codeborne.selenide.webdriver.WebDriverFactory adjustBrowserSize
INFO: Set browser size to 1920x1080
[1531844976.921][INFO]: COMMAND SetWindowSize {
   "handle": "current",
   "height": 1080,
   "width": 1920,
   "windowHandle": "current"
}
[1531844976.922][INFO]: resolved localhost to ["::1","127.0.0.1"]
[1531844977.924][DEBUG]: DEVTOOLS COMMAND Browser.getWindowForTarget (id=1) {
   "targetId": "EE3CB0CECE8119AA4E7C19E60213044C"
}
[1531844977.925][DEBUG]: DEVTOOLS RESPONSE Browser.getWindowForTarget (id=1) {
   "bounds": {
      "height": 600,
      "left": 0,
      "top": 0,
      "width": 800,
      "windowState": "normal"
   },
   "windowId": 1
}
[1531844977.925][DEBUG]: DEVTOOLS COMMAND Browser.setWindowBounds (id=2) {
   "bounds": {
      "height": 1080,
      "width": 1920
   },
   "windowId": 1
}
[1531844977.926][DEBUG]: DEVTOOLS RESPONSE Browser.setWindowBounds (id=2) {

}
[1531844978.027][INFO]: RESPONSE SetWindowSize
июл 17, 2018 7:29:38 PM com.codeborne.selenide.webdriver.WebDriverFactory logBrowserVersion
INFO: BrowserName=chrome Version=67.0.3396.99 Platform=XP
июл 17, 2018 7:29:38 PM com.codeborne.selenide.webdriver.WebDriverFactory createWebDriver
INFO: Selenide v. 4.12.1
июл 17, 2018 7:29:38 PM com.codeborne.selenide.webdriver.WebDriverFactory logSeleniumInfo
INFO: Selenium WebDriver v. 3.12.0 build time: 2018-05-08T14:04:26.12Z
июл 17, 2018 7:29:38 PM com.codeborne.selenide.impl.WebDriverThreadLocalContainer createDriver
INFO: Create webdriver in current thread 1: ChromeDriver -> ChromeDriver: chrome on XP (2081e4017950886e9b6a0bcfb66cfb79)
[1531844978.045][INFO]: COMMAND Navigate {
   "url": "http://someurl:9443/someres/start-process.html"
}
[1531844978.045][DEBUG]: DEVTOOLS EVENT Page.frameResized {

}
[1531844978.045][INFO]: Waiting for pending navigations...
[1531844978.045][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=10) {
   "expression": "1"
}
[1531844978.048][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=10) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.048][DEBUG]: DEVTOOLS COMMAND DOM.getDocument (id=11) {

}
[1531844978.050][DEBUG]: DEVTOOLS RESPONSE DOM.getDocument (id=11) {
   "root": {
      "backendNodeId": 2,
      "baseURL": "data:,",
      "childNodeCount": 1,
      "children": [ {
         "attributes": [  ],
         "backendNodeId": 3,
         "childNodeCount": 2,
         "children": [ {
            "attributes": [  ],
            "backendNodeId": 4,
            "childNodeCount": 0,
            "localName": "head",
            "nodeId": 7,
            "nodeName": "HEAD",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 6
         }, {
            "attributes": [  ],
            "backendNodeId": 5,
            "childNodeCount": 0,
            "localName": "body",
            "nodeId": 8,
            "nodeName": "BODY",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 6
         } ],
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "localName": "html",
         "nodeId": 6,
         "nodeName": "HTML",
         "nodeType": 1,
         "nodeValue": "",
         "parentId": 5
      } ],
      "documentURL": "data:,",
      "localName": "",
      "nodeId": 5,
      "nodeName": "#document",
      "nodeType": 9,
      "nodeValue": "",
      "xmlVersion": ""
   }
}
[1531844978.050][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=12) {
   "expression": "var frame = document.createElement('iframe');frame.name = 'chromedriver dummy frame';frame.src = 'about:blank';document.body.appendChild(frame);window.setTimeout(function() {  document.body.removeC..."
}
[1531844978.052][DEBUG]: DEVTOOLS EVENT DOM.childNodeCountUpdated {
   "childNodeCount": 1,
   "nodeId": 8
}
[1531844978.052][DEBUG]: DEVTOOLS EVENT Page.frameAttached {
   "frameId": "9D7FF548272CF415178DB938D0E7D752",
   "parentFrameId": "EE3CB0CECE8119AA4E7C19E60213044C",
   "stack": {
      "callFrames": [ {
         "columnNumber": 125,
         "functionName": "",
         "lineNumber": 0,
         "scriptId": "18",
         "url": ""
      } ]
   }
}
[1531844978.054][DEBUG]: DEVTOOLS EVENT Page.frameStartedLoading {
   "frameId": "9D7FF548272CF415178DB938D0E7D752"
}
[1531844978.055][DEBUG]: DEVTOOLS EVENT Page.frameNavigated {
   "frame": {
      "id": "9D7FF548272CF415178DB938D0E7D752",
      "loaderId": "1D42018CA4A156462907276CB3C94FEF",
      "mimeType": "text/html",
      "name": "chromedriver dummy frame",
      "parentId": "EE3CB0CECE8119AA4E7C19E60213044C",
      "securityOrigin": "://",
      "url": "about:blank"
   }
}
[1531844978.055][DEBUG]: DEVTOOLS EVENT Runtime.executionContextCreated {
   "context": {
      "auxData": {
         "frameId": "9D7FF548272CF415178DB938D0E7D752",
         "isDefault": true
      },
      "id": 2,
      "name": "",
      "origin": "://"
   }
}
[1531844978.055][DEBUG]: DEVTOOLS EVENT Page.frameStoppedLoading {
   "frameId": "9D7FF548272CF415178DB938D0E7D752"
}
[1531844978.055][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=12) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.055][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.055][DEBUG]: DEVTOOLS COMMAND Page.navigate (id=13) {
   "url": "http://someurl:9443/someres/start-process.html"
}
[1531844978.063][DEBUG]: DEVTOOLS EVENT DOM.childNodeCountUpdated {
   "childNodeCount": 0,
   "nodeId": 8
}
[1531844978.063][DEBUG]: DEVTOOLS EVENT Runtime.executionContextDestroyed {
   "executionContextId": 2
}
[1531844978.063][DEBUG]: DEVTOOLS EVENT Page.frameDetached {
   "frameId": "9D7FF548272CF415178DB938D0E7D752"
}
[1531844978.116][DEBUG]: DEVTOOLS RESPONSE Page.navigate (id=13) {
   "errorText": "net::ERR_EMPTY_RESPONSE",
   "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
   "loaderId": "77AF6BF31B2607C3E456D064F3893EE1"
}
[1531844978.116][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=14) {
   "expression": "document.URL"
}
[1531844978.116][DEBUG]: DEVTOOLS EVENT Runtime.executionContextsCleared {

}
[1531844978.117][DEBUG]: DEVTOOLS EVENT Page.frameStartedLoading {
   "frameId": "EE3CB0CECE8119AA4E7C19E60213044C"
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Runtime.executionContextsCleared {

}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Page.frameNavigated {
   "frame": {
      "id": "EE3CB0CECE8119AA4E7C19E60213044C",
      "loaderId": "77EA41EE230A84AECE7551BB17A126CF",
      "mimeType": "text/html",
      "securityOrigin": "://",
      "unreachableUrl": "http://someurl:9443/someres/start-process.html",
      "url": "chrome-error://chromewebdata/"
   }
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Runtime.executionContextCreated {
   "context": {
      "auxData": {
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "isDefault": true
      },
      "id": 1,
      "name": "",
      "origin": "://"
   }
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT DOM.documentUpdated {

}
[1531844978.122][DEBUG]: DEVTOOLS COMMAND DOM.getDocument (id=15) {

}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Page.loadEventFired {
   "timestamp": 1938.3485
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Page.frameStoppedLoading {
   "frameId": "EE3CB0CECE8119AA4E7C19E60213044C"
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT Page.domContentEventFired {
   "timestamp": 1938.34892
}
[1531844978.122][DEBUG]: DEVTOOLS EVENT DOM.documentUpdated {

}
[1531844978.122][DEBUG]: DEVTOOLS COMMAND DOM.getDocument (id=16) {

}
[1531844978.127][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=14) {
   "result": {
      "type": "string",
      "value": "chrome-error://chromewebdata/"
   }
}
[1531844978.127][DEBUG]: DEVTOOLS RESPONSE DOM.getDocument (id=15) {
   "root": {
      "backendNodeId": 1,
      "baseURL": "chrome-error://chromewebdata/",
      "childNodeCount": 1,
      "children": [ {
         "attributes": [  ],
         "backendNodeId": 2,
         "childNodeCount": 2,
         "children": [ {
            "attributes": [  ],
            "backendNodeId": 3,
            "childNodeCount": 0,
            "localName": "head",
            "nodeId": 3,
            "nodeName": "HEAD",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 2
         }, {
            "attributes": [  ],
            "backendNodeId": 4,
            "childNodeCount": 0,
            "localName": "body",
            "nodeId": 4,
            "nodeName": "BODY",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 2
         } ],
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "localName": "html",
         "nodeId": 2,
         "nodeName": "HTML",
         "nodeType": 1,
         "nodeValue": "",
         "parentId": 1
      } ],
      "documentURL": "chrome-error://chromewebdata/",
      "localName": "",
      "nodeId": 1,
      "nodeName": "#document",
      "nodeType": 9,
      "nodeValue": "",
      "xmlVersion": ""
   }
}
[1531844978.127][DEBUG]: DEVTOOLS RESPONSE DOM.getDocument (id=16) {
   "root": {
      "backendNodeId": 1,
      "baseURL": "chrome-error://chromewebdata/",
      "childNodeCount": 1,
      "children": [ {
         "attributes": [  ],
         "backendNodeId": 2,
         "childNodeCount": 2,
         "children": [ {
            "attributes": [  ],
            "backendNodeId": 3,
            "childNodeCount": 0,
            "localName": "head",
            "nodeId": 7,
            "nodeName": "HEAD",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 6
         }, {
            "attributes": [  ],
            "backendNodeId": 4,
            "childNodeCount": 0,
            "localName": "body",
            "nodeId": 8,
            "nodeName": "BODY",
            "nodeType": 1,
            "nodeValue": "",
            "parentId": 6
         } ],
         "frameId": "EE3CB0CECE8119AA4E7C19E60213044C",
         "localName": "html",
         "nodeId": 6,
         "nodeName": "HTML",
         "nodeType": 1,
         "nodeValue": "",
         "parentId": 5
      } ],
      "documentURL": "chrome-error://chromewebdata/",
      "localName": "",
      "nodeId": 5,
      "nodeName": "#document",
      "nodeType": 9,
      "nodeValue": "",
      "xmlVersion": ""
   }
}
[1531844978.127][INFO]: Waiting for pending navigations...
[1531844978.127][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=17) {
   "expression": "1"
}
[1531844978.130][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=17) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.130][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.130][INFO]: RESPONSE Navigate
[1531844978.133][INFO]: COMMAND ExecuteScript {
   "args": [  ],
   "script": "if (!window._selenide_jsErrors) {\n  window._selenide_jsErrors = [];\n}\nif (!window.onerror) {\n  window.onerror = function (errorMessage, url, lineNumber) {\n    var message = errorMessage + ' at ' + ..."
}
[1531844978.133][INFO]: Waiting for pending navigations...
[1531844978.133][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=18) {
   "expression": "1"
}
[1531844978.134][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=18) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.134][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.134][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=19) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.137][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=19) {
   "result": {
      "type": "object",
      "value": {
         "status": 0
      }
   }
}
[1531844978.137][INFO]: Waiting for pending navigations...
[1531844978.137][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=20) {
   "expression": "1"
}
[1531844978.138][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=20) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.138][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.138][INFO]: RESPONSE ExecuteScript
[1531844978.178][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.178][INFO]: Waiting for pending navigations...
[1531844978.178][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=21) {
   "expression": "1"
}
[1531844978.178][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=21) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.178][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.180][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=22) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.190][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=22) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.190][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=23) {
   "expression": "1"
}
[1531844978.190][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=23) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.190][INFO]: Waiting for pending navigations...
[1531844978.190][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=24) {
   "expression": "1"
}
[1531844978.191][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=24) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.191][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.191][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.199][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.199][INFO]: Waiting for pending navigations...
[1531844978.199][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=25) {
   "expression": "1"
}
[1531844978.200][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=25) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.200][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.201][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=26) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.205][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=26) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.205][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=27) {
   "expression": "1"
}
[1531844978.206][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=27) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.206][INFO]: Waiting for pending navigations...
[1531844978.206][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=28) {
   "expression": "1"
}
[1531844978.206][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=28) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.206][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.206][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.312][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.312][INFO]: Waiting for pending navigations...
[1531844978.312][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=29) {
   "expression": "1"
}
[1531844978.315][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=29) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.315][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.320][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=30) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.329][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=30) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.330][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=31) {
   "expression": "1"
}
[1531844978.332][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=31) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.332][INFO]: Waiting for pending navigations...
[1531844978.332][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=32) {
   "expression": "1"
}
[1531844978.334][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=32) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.334][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.334][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.440][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.440][INFO]: Waiting for pending navigations...
[1531844978.440][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=33) {
   "expression": "1"
}
[1531844978.443][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=33) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.443][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.447][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=34) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.456][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=34) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.457][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=35) {
   "expression": "1"
}
[1531844978.459][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=35) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.459][INFO]: Waiting for pending navigations...
[1531844978.459][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=36) {
   "expression": "1"
}
[1531844978.461][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=36) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.461][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.461][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.567][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.567][INFO]: Waiting for pending navigations...
[1531844978.567][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=37) {
   "expression": "1"
}
[1531844978.569][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=37) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.569][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.572][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=38) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.579][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=38) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.579][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=39) {
   "expression": "1"
}
[1531844978.581][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=39) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.581][INFO]: Waiting for pending navigations...
[1531844978.581][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=40) {
   "expression": "1"
}
[1531844978.582][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=40) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.582][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.582][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.688][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.688][INFO]: Waiting for pending navigations...
[1531844978.688][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=41) {
   "expression": "1"
}
[1531844978.690][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=41) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.690][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.696][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=42) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.705][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=42) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.706][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=43) {
   "expression": "1"
}
[1531844978.708][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=43) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.708][INFO]: Waiting for pending navigations...
[1531844978.708][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=44) {
   "expression": "1"
}
[1531844978.709][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=44) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.710][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.710][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.816][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.816][INFO]: Waiting for pending navigations...
[1531844978.816][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=45) {
   "expression": "1"
}
[1531844978.817][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=45) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.817][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.819][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=46) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.822][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=46) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.822][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=47) {
   "expression": "1"
}
[1531844978.823][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=47) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.823][INFO]: Waiting for pending navigations...
[1531844978.823][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=48) {
   "expression": "1"
}
[1531844978.823][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=48) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.823][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.823][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844978.929][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844978.929][INFO]: Waiting for pending navigations...
[1531844978.929][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=49) {
   "expression": "1"
}
[1531844978.931][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=49) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.931][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.936][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=50) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844978.948][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=50) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844978.949][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=51) {
   "expression": "1"
}
[1531844978.951][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=51) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.951][INFO]: Waiting for pending navigations...
[1531844978.951][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=52) {
   "expression": "1"
}
[1531844978.951][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=52) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844978.951][INFO]: Done waiting for pending navigations. Status: ok
[1531844978.951][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.054][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.054][INFO]: Waiting for pending navigations...
[1531844979.054][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=53) {
   "expression": "1"
}
[1531844979.055][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=53) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.055][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.057][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=54) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.060][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=54) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.060][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=55) {
   "expression": "1"
}
[1531844979.061][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=55) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.061][INFO]: Waiting for pending navigations...
[1531844979.061][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=56) {
   "expression": "1"
}
[1531844979.062][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=56) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.062][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.062][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.166][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.166][INFO]: Waiting for pending navigations...
[1531844979.166][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=57) {
   "expression": "1"
}
[1531844979.167][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=57) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.167][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.169][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=58) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.172][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=58) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.173][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=59) {
   "expression": "1"
}
[1531844979.173][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=59) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.173][INFO]: Waiting for pending navigations...
[1531844979.173][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=60) {
   "expression": "1"
}
[1531844979.174][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=60) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.174][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.174][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.278][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.278][INFO]: Waiting for pending navigations...
[1531844979.278][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=61) {
   "expression": "1"
}
[1531844979.281][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=61) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.281][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.282][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=62) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.286][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=62) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.286][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=63) {
   "expression": "1"
}
[1531844979.287][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=63) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.287][INFO]: Waiting for pending navigations...
[1531844979.287][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=64) {
   "expression": "1"
}
[1531844979.288][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=64) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.288][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.288][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.392][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.392][INFO]: Waiting for pending navigations...
[1531844979.392][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=65) {
   "expression": "1"
}
[1531844979.393][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=65) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.393][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.396][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=66) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.402][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=66) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.403][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=67) {
   "expression": "1"
}
[1531844979.404][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=67) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.404][INFO]: Waiting for pending navigations...
[1531844979.404][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=68) {
   "expression": "1"
}
[1531844979.406][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=68) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.406][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.406][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.513][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.513][INFO]: Waiting for pending navigations...
[1531844979.513][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=69) {
   "expression": "1"
}
[1531844979.515][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=69) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.515][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.520][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=70) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.524][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=70) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.524][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=71) {
   "expression": "1"
}
[1531844979.525][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=71) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.525][INFO]: Waiting for pending navigations...
[1531844979.525][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=72) {
   "expression": "1"
}
[1531844979.526][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=72) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.526][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.526][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.631][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.631][INFO]: Waiting for pending navigations...
[1531844979.631][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=73) {
   "expression": "1"
}
[1531844979.633][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=73) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.633][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.639][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=74) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.645][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=74) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.645][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=75) {
   "expression": "1"
}
[1531844979.646][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=75) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.646][INFO]: Waiting for pending navigations...
[1531844979.646][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=76) {
   "expression": "1"
}
[1531844979.646][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=76) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.646][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.646][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.751][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.751][INFO]: Waiting for pending navigations...
[1531844979.751][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=77) {
   "expression": "1"
}
[1531844979.752][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=77) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.753][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.756][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=78) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.761][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=78) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.762][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=79) {
   "expression": "1"
}
[1531844979.762][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=79) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.762][INFO]: Waiting for pending navigations...
[1531844979.762][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=80) {
   "expression": "1"
}
[1531844979.763][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=80) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.763][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.763][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.868][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.868][INFO]: Waiting for pending navigations...
[1531844979.868][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=81) {
   "expression": "1"
}
[1531844979.870][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=81) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.870][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.875][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=82) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844979.882][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=82) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844979.882][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=83) {
   "expression": "1"
}
[1531844979.883][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=83) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.883][INFO]: Waiting for pending navigations...
[1531844979.883][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=84) {
   "expression": "1"
}
[1531844979.883][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=84) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.883][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.883][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844979.988][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844979.988][INFO]: Waiting for pending navigations...
[1531844979.988][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=85) {
   "expression": "1"
}
[1531844979.990][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=85) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844979.990][INFO]: Done waiting for pending navigations. Status: ok
[1531844979.994][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=86) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.002][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=86) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.002][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=87) {
   "expression": "1"
}
[1531844980.003][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=87) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.003][INFO]: Waiting for pending navigations...
[1531844980.003][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=88) {
   "expression": "1"
}
[1531844980.003][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=88) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.003][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.003][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.106][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.106][INFO]: Waiting for pending navigations...
[1531844980.106][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=89) {
   "expression": "1"
}
[1531844980.107][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=89) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.107][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.108][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=90) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.111][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=90) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.112][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=91) {
   "expression": "1"
}
[1531844980.113][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=91) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.113][INFO]: Waiting for pending navigations...
[1531844980.113][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=92) {
   "expression": "1"
}
[1531844980.114][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=92) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.114][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.114][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.217][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.217][INFO]: Waiting for pending navigations...
[1531844980.217][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=93) {
   "expression": "1"
}
[1531844980.218][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=93) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.218][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.220][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=94) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.223][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=94) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.223][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=95) {
   "expression": "1"
}
[1531844980.223][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=95) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.223][INFO]: Waiting for pending navigations...
[1531844980.223][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=96) {
   "expression": "1"
}
[1531844980.224][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=96) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.224][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.224][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.328][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.328][INFO]: Waiting for pending navigations...
[1531844980.328][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=97) {
   "expression": "1"
}
[1531844980.329][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=97) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.329][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.332][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=98) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.341][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=98) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.342][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=99) {
   "expression": "1"
}
[1531844980.344][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=99) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.344][INFO]: Waiting for pending navigations...
[1531844980.344][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=100) {
   "expression": "1"
}
[1531844980.346][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=100) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.346][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.346][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.452][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.452][INFO]: Waiting for pending navigations...
[1531844980.452][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=101) {
   "expression": "1"
}
[1531844980.453][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=101) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.454][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.455][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=102) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.459][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=102) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.459][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=103) {
   "expression": "1"
}
[1531844980.460][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=103) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.460][INFO]: Waiting for pending navigations...
[1531844980.460][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=104) {
   "expression": "1"
}
[1531844980.460][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=104) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.460][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.460][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.565][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.565][INFO]: Waiting for pending navigations...
[1531844980.565][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=105) {
   "expression": "1"
}
[1531844980.567][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=105) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.567][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.572][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=106) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.585][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=106) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.585][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=107) {
   "expression": "1"
}
[1531844980.587][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=107) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.587][INFO]: Waiting for pending navigations...
[1531844980.587][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=108) {
   "expression": "1"
}
[1531844980.589][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=108) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.589][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.589][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.694][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.694][INFO]: Waiting for pending navigations...
[1531844980.694][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=109) {
   "expression": "1"
}
[1531844980.695][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=109) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.695][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.697][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=110) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.701][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=110) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.702][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=111) {
   "expression": "1"
}
[1531844980.702][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=111) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.702][INFO]: Waiting for pending navigations...
[1531844980.702][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=112) {
   "expression": "1"
}
[1531844980.703][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=112) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.703][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.703][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.806][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.806][INFO]: Waiting for pending navigations...
[1531844980.806][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=113) {
   "expression": "1"
}
[1531844980.807][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=113) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.807][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.809][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=114) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.818][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=114) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.818][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=115) {
   "expression": "1"
}
[1531844980.820][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=115) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.820][INFO]: Waiting for pending navigations...
[1531844980.820][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=116) {
   "expression": "1"
}
[1531844980.822][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=116) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.822][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.822][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844980.927][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844980.927][INFO]: Waiting for pending navigations...
[1531844980.927][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=117) {
   "expression": "1"
}
[1531844980.928][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=117) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.928][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.929][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=118) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844980.932][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=118) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844980.933][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=119) {
   "expression": "1"
}
[1531844980.933][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=119) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.933][INFO]: Waiting for pending navigations...
[1531844980.933][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=120) {
   "expression": "1"
}
[1531844980.934][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=120) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844980.934][INFO]: Done waiting for pending navigations. Status: ok
[1531844980.934][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.038][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.038][INFO]: Waiting for pending navigations...
[1531844981.038][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=121) {
   "expression": "1"
}
[1531844981.040][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=121) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.040][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.045][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=122) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.052][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=122) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.053][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=123) {
   "expression": "1"
}
[1531844981.054][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=123) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.054][INFO]: Waiting for pending navigations...
[1531844981.054][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=124) {
   "expression": "1"
}
[1531844981.055][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=124) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.055][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.055][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.161][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.161][INFO]: Waiting for pending navigations...
[1531844981.161][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=125) {
   "expression": "1"
}
[1531844981.163][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=125) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.163][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.168][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=126) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.173][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=126) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.173][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=127) {
   "expression": "1"
}
[1531844981.174][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=127) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.174][INFO]: Waiting for pending navigations...
[1531844981.174][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=128) {
   "expression": "1"
}
[1531844981.175][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=128) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.175][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.175][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.280][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.280][INFO]: Waiting for pending navigations...
[1531844981.280][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=129) {
   "expression": "1"
}
[1531844981.282][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=129) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.282][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.287][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=130) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.295][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=130) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.295][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=131) {
   "expression": "1"
}
[1531844981.297][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=131) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.297][INFO]: Waiting for pending navigations...
[1531844981.297][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=132) {
   "expression": "1"
}
[1531844981.298][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=132) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.298][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.298][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.404][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.404][INFO]: Waiting for pending navigations...
[1531844981.404][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=133) {
   "expression": "1"
}
[1531844981.406][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=133) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.406][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.410][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=134) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.414][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=134) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.414][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=135) {
   "expression": "1"
}
[1531844981.416][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=135) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.416][INFO]: Waiting for pending navigations...
[1531844981.416][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=136) {
   "expression": "1"
}
[1531844981.416][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=136) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.416][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.416][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.521][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.521][INFO]: Waiting for pending navigations...
[1531844981.521][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=137) {
   "expression": "1"
}
[1531844981.523][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=137) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.523][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.528][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=138) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.538][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=138) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.538][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=139) {
   "expression": "1"
}
[1531844981.540][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=139) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.540][INFO]: Waiting for pending navigations...
[1531844981.540][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=140) {
   "expression": "1"
}
[1531844981.542][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=140) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.542][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.542][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.648][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.648][INFO]: Waiting for pending navigations...
[1531844981.648][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=141) {
   "expression": "1"
}
[1531844981.649][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=141) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.649][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.651][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=142) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.654][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=142) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.655][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=143) {
   "expression": "1"
}
[1531844981.655][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=143) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.656][INFO]: Waiting for pending navigations...
[1531844981.656][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=144) {
   "expression": "1"
}
[1531844981.656][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=144) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.656][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.656][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.761][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.761][INFO]: Waiting for pending navigations...
[1531844981.761][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=145) {
   "expression": "1"
}
[1531844981.763][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=145) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.763][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.768][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=146) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.778][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=146) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.778][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=147) {
   "expression": "1"
}
[1531844981.780][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=147) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.780][INFO]: Waiting for pending navigations...
[1531844981.780][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=148) {
   "expression": "1"
}
[1531844981.782][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=148) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.782][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.782][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844981.888][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844981.888][INFO]: Waiting for pending navigations...
[1531844981.888][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=149) {
   "expression": "1"
}
[1531844981.889][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=149) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.889][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.891][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=150) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844981.895][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=150) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844981.895][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=151) {
   "expression": "1"
}
[1531844981.896][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=151) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.896][INFO]: Waiting for pending navigations...
[1531844981.896][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=152) {
   "expression": "1"
}
[1531844981.897][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=152) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844981.897][INFO]: Done waiting for pending navigations. Status: ok
[1531844981.897][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844982.002][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844982.002][INFO]: Waiting for pending navigations...
[1531844982.002][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=153) {
   "expression": "1"
}
[1531844982.004][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=153) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.004][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.009][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=154) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844982.019][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=154) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844982.020][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=155) {
   "expression": "1"
}
[1531844982.022][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=155) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.022][INFO]: Waiting for pending navigations...
[1531844982.022][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=156) {
   "expression": "1"
}
[1531844982.024][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=156) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.024][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.024][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844982.129][INFO]: COMMAND FindElement {
   "using": "css selector",
   "value": "input[onclick='soap(0);']"
}
[1531844982.129][INFO]: Waiting for pending navigations...
[1531844982.129][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=157) {
   "expression": "1"
}
[1531844982.131][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=157) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.131][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.132][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=158) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844982.136][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=158) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": null
      }
   }
}
[1531844982.136][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=159) {
   "expression": "1"
}
[1531844982.137][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=159) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.137][INFO]: Waiting for pending navigations...
[1531844982.137][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=160) {
   "expression": "1"
}
[1531844982.138][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=160) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.138][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.138][INFO]: RESPONSE FindElement no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
[1531844982.251][INFO]: COMMAND GetSource {

}
[1531844982.251][INFO]: Waiting for pending navigations...
[1531844982.251][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=161) {
   "expression": "1"
}
[1531844982.253][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=161) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.253][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.254][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=162) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844982.259][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=162) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": "\u003Chtml xmlns=\"http://www.w3.org/1999/xhtml\">\u003Chead>\u003C/head>\u003Cbody>\u003C/body>\u003C/html>"
      }
   }
}
[1531844982.259][INFO]: Waiting for pending navigations...
[1531844982.259][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=163) {
   "expression": "1"
}
[1531844982.261][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=163) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.261][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.261][INFO]: RESPONSE GetSource "\u003Chtml xmlns=\"http://www.w3.org/1999/xhtml\">\u003Chead>\u003C/head>\u003Cbody>\u003C/body>\u003C/html>"
[1531844982.270][INFO]: COMMAND Screenshot {

}
[1531844982.270][INFO]: Waiting for pending navigations...
[1531844982.270][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=164) {
   "expression": "1"
}
[1531844982.271][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=164) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.272][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.272][DEBUG]: DevTools request: http://localhost:55636/json/activate/EE3CB0CECE8119AA4E7C19E60213044C
[1531844982.273][DEBUG]: DevTools response: Target activated
[1531844982.273][DEBUG]: DEVTOOLS COMMAND Page.captureScreenshot (id=165) {

}
[1531844982.542][DEBUG]: DEVTOOLS RESPONSE Page.captureScreenshot (id=165) {
   "data": "iVBORw0KGgoAAAANSUhEUgAAB4AAAAQ4CAYAAADo08FDAAAgAElEQVR4nOzZwQ3AIBDAsNL9dz6WQEJE9gT5Z83MfAAAAAAAAAA8778dAAAAAAAAAMAZBjAAAAAAAABAhAEMAAAAAAAAEGEAAwAAAAAAAEQYwAAAAAAAAAARBjAAAAAAAABAhAEMAAAAAAAAEGEAA..."
}
[1531844982.542][INFO]: Waiting for pending navigations...
[1531844982.542][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=166) {
   "expression": "1"
}
[1531844982.544][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=166) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.544][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.544][INFO]: RESPONSE Screenshot "iVBORw0KGgoAAAANSUhEUgAAB4AAAAQ4CAYAAADo08FDAAAgAElEQVR4nOzZwQ3AIBDAsNL9dz6WQEJE9gT5Z83MfAAAAAAAAAA8778dAAAAAAAAAMAZBjAAAAAAAABAhAEMAAAAAAAAEGEAAwAAAAAAAEQYwAAAAAAAAAARBjAAAAAAAABAhAEMAAAAAAAAEGEAA..."
[1531844982.553][INFO]: COMMAND ExecuteScript {
   "args": [  ],
   "script": "return window._selenide_jsErrors"
}
[1531844982.553][INFO]: Waiting for pending navigations...
[1531844982.554][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=167) {
   "expression": "1"
}
[1531844982.555][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=167) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.555][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.555][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=168) {
   "expression": "(function() { // Copyright (c) 2012 The Chromium Authors. All rights reserved.\n// Use of this source code is governed by a BSD-style license that can be\n// found in the LICENSE file.\n\n/**\n * Enum f...",
   "returnByValue": true
}
[1531844982.557][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=168) {
   "result": {
      "type": "object",
      "value": {
         "status": 0,
         "value": [  ]
      }
   }
}
[1531844982.557][INFO]: Waiting for pending navigations...
[1531844982.557][DEBUG]: DEVTOOLS COMMAND Runtime.evaluate (id=169) {
   "expression": "1"
}
[1531844982.558][DEBUG]: DEVTOOLS RESPONSE Runtime.evaluate (id=169) {
   "result": {
      "description": "1",
      "type": "number",
      "value": 1
   }
}
[1531844982.558][INFO]: Done waiting for pending navigations. Status: ok
[1531844982.558][INFO]: RESPONSE ExecuteScript [  ]

Element not found {input[onclick='soap(0);']}
Expected: visible

Screenshot: file:/C:/DOCS/NFO/NfoUiTest/build/reports/tests/1531844982251.0.png
Page source: file:/C:/DOCS/NFO/NfoUiTest/build/reports/tests/1531844982251.0.html
Timeout: 4 s.
Caused by: NoSuchElementException: no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
	at com.codeborne.selenide.impl.WebElementSource.createElementNotFoundError(WebElementSource.java:31)
	at com.codeborne.selenide.impl.ElementFinder.createElementNotFoundError(ElementFinder.java:82)
	at com.codeborne.selenide.impl.WebElementSource.checkCondition(WebElementSource.java:59)
	at com.codeborne.selenide.impl.WebElementSource.findAndAssertElementIsVisible(WebElementSource.java:72)
	at com.codeborne.selenide.commands.Click.execute(Click.java:16)
	at com.codeborne.selenide.commands.Click.execute(Click.java:12)
	at com.codeborne.selenide.commands.Commands.execute(Commands.java:144)
	at com.codeborne.selenide.impl.SelenideElementProxy.dispatchAndRetry(SelenideElementProxy.java:90)
	at com.codeborne.selenide.impl.SelenideElementProxy.invoke(SelenideElementProxy.java:65)
	at com.sun.proxy.$Proxy9.click(Unknown Source)
	at pages.StartProcessPage.startAsClientManager(StartProcessPage.java:14)
	at StartProcessTests.StartProcessTest(StartProcessTests.java:28)
	at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
	at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
	at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
	at java.lang.reflect.Method.invoke(Method.java:498)
	at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:513)
	at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:115)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$6(TestMethodTestDescriptor.java:170)
	at org.junit.jupiter.engine.execution.ThrowableCollector.execute(ThrowableCollector.java:40)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:166)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:113)
	at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:58)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.lambda$executeRecursively$3(HierarchicalTestExecutor.java:113)
	at org.junit.platform.engine.support.hierarchical.SingleTestExecutor.executeSafely(SingleTestExecutor.java:66)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.executeRecursively(HierarchicalTestExecutor.java:108)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.execute(HierarchicalTestExecutor.java:79)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.lambda$executeRecursively$2(HierarchicalTestExecutor.java:121)
	at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
	at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175)
	at java.util.Iterator.forEachRemaining(Iterator.java:116)
	at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1801)
	at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
	at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
	at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151)
	at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174)
	at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
	at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.lambda$executeRecursively$3(HierarchicalTestExecutor.java:121)
	at org.junit.platform.engine.support.hierarchical.SingleTestExecutor.executeSafely(SingleTestExecutor.java:66)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.executeRecursively(HierarchicalTestExecutor.java:108)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.execute(HierarchicalTestExecutor.java:79)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.lambda$executeRecursively$2(HierarchicalTestExecutor.java:121)
	at java.util.stream.ForEachOps$ForEachOp$OfRef.accept(ForEachOps.java:184)
	at java.util.stream.ReferencePipeline$2$1.accept(ReferencePipeline.java:175)
	at java.util.Iterator.forEachRemaining(Iterator.java:116)
	at java.util.Spliterators$IteratorSpliterator.forEachRemaining(Spliterators.java:1801)
	at java.util.stream.AbstractPipeline.copyInto(AbstractPipeline.java:481)
	at java.util.stream.AbstractPipeline.wrapAndCopyInto(AbstractPipeline.java:471)
	at java.util.stream.ForEachOps$ForEachOp.evaluateSequential(ForEachOps.java:151)
	at java.util.stream.ForEachOps$ForEachOp$OfRef.evaluateSequential(ForEachOps.java:174)
	at java.util.stream.AbstractPipeline.evaluate(AbstractPipeline.java:234)
	at java.util.stream.ReferencePipeline.forEach(ReferencePipeline.java:418)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.lambda$executeRecursively$3(HierarchicalTestExecutor.java:121)
	at org.junit.platform.engine.support.hierarchical.SingleTestExecutor.executeSafely(SingleTestExecutor.java:66)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.executeRecursively(HierarchicalTestExecutor.java:108)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor$NodeExecutor.execute(HierarchicalTestExecutor.java:79)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestExecutor.execute(HierarchicalTestExecutor.java:55)
	at org.junit.platform.engine.support.hierarchical.HierarchicalTestEngine.execute(HierarchicalTestEngine.java:43)
	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:170)
	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:154)
	at org.junit.platform.launcher.core.DefaultLauncher.execute(DefaultLauncher.java:90)
	at com.intellij.junit5.JUnit5IdeaTestRunner.startRunnerWithArgs(JUnit5IdeaTestRunner.java:62)
	at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
	at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
	at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)
Caused by: org.openqa.selenium.NoSuchElementException: no such element: Unable to locate element: {"method":"css selector","selector":"input[onclick='soap(0);']"}
  (Session info: headless chrome=67.0.3396.99)
  (Driver info: chromedriver=2.40.565498 (ea082db3280dd6843ebfb08a625e3eb905c4f5ab),platform=Windows NT 6.1.7601 SP1 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 0 milliseconds
For documentation on this error, please visit: http://seleniumhq.org/exceptions/no_such_element.html
Build info: version: '3.12.0', revision: '7c6e0b3', time: '2018-05-08T14:04:26.12Z'
System info: host: '2FZ55M2', ip: '192.168.32.115', os.name: 'Windows 7', os.arch: 'amd64', os.version: '6.1', java.version: '1.8.0_151'
Driver info: org.openqa.selenium.chrome.ChromeDriver
Capabilities {acceptInsecureCerts: false, acceptSslCerts: false, applicationCacheEnabled: false, browserConnectionEnabled: false, browserName: chrome, chrome: {chromedriverVersion: 2.40.565498 (ea082db3280dd6..., userDataDir: C:\Users\RRUMYA~1\AppData\L...}, cssSelectorsEnabled: true, databaseEnabled: false, handlesAlerts: true, hasTouchScreen: false, javascriptEnabled: true, locationContextEnabled: true, mobileEmulationEnabled: false, nativeEvents: true, networkConnectionEnabled: false, pageLoadStrategy: normal, platform: XP, platformName: XP, rotatable: false, setWindowRect: true, takesHeapSnapshot: true, takesScreenshot: true, unexpectedAlertBehaviour: , unhandledPromptBehavior: , version: 67.0.3396.99, webStorageEnabled: true}
Session ID: 2081e4017950886e9b6a0bcfb66cfb79
*** Element info: {Using=css selector, value=input[onclick='soap(0);']}
	at sun.reflect.GeneratedConstructorAccessor16.newInstance(Unknown Source)
	at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
	at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
	at org.openqa.selenium.remote.ErrorHandler.createThrowable(ErrorHandler.java:214)
	at org.openqa.selenium.remote.ErrorHandler.throwIfResponseFailed(ErrorHandler.java:166)
	at org.openqa.selenium.remote.http.JsonHttpResponseCodec.reconstructValue(JsonHttpResponseCodec.java:40)
	at org.openqa.selenium.remote.http.AbstractHttpResponseCodec.decode(AbstractHttpResponseCodec.java:80)
	at org.openqa.selenium.remote.http.AbstractHttpResponseCodec.decode(AbstractHttpResponseCodec.java:44)
	at org.openqa.selenium.remote.HttpCommandExecutor.execute(HttpCommandExecutor.java:158)
	at org.openqa.selenium.remote.service.DriverCommandExecutor.execute(DriverCommandExecutor.java:83)
	at org.openqa.selenium.remote.RemoteWebDriver.execute(RemoteWebDriver.java:543)
	at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:317)
	at org.openqa.selenium.remote.RemoteWebDriver.findElementByCssSelector(RemoteWebDriver.java:411)
	at org.openqa.selenium.By$ByCssSelector.findElement(By.java:431)
	at org.openqa.selenium.remote.RemoteWebDriver.findElement(RemoteWebDriver.java:309)
	at com.codeborne.selenide.impl.WebElementSelector.findElement(WebElementSelector.java:29)
	at com.codeborne.selenide.impl.ElementFinder.getWebElement(ElementFinder.java:56)
	at com.codeborne.selenide.impl.WebElementSource.checkCondition(WebElementSource.java:44)
	... 63 more

июл 17, 2018 7:29:42 PM com.codeborne.selenide.impl.WebDriverThreadLocalContainer closeWebDriver
INFO: Close webdriver: 1 -> ChromeDriver: chrome on XP (2081e4017950886e9b6a0bcfb66cfb79)
[1531844982.577][INFO]: COMMAND Quit {

}
[1531844982.589][INFO]: RESPONSE Quit
[1531844982.589][DEBUG]: Log type 'driver' lost 0 entries on destruction
[1531844982.589][DEBUG]: Log type 'browser' lost 0 entries on destruction

эта штука в хедлесе по-умолчанию выставляет 800x600. Возможно у вас просто не видно этого элемента.
используйте setSize для явного указания размера

1 лайк

Нет, это не помогает. Да я в логах вижу, что почему то загружается только вот то, что я вышел привел. То есть его там и нет, этого элемента.

Возможно проблема в https, потому что попробовал я yandex загрузить - все нормально отображается на скриншотах. А тут просто белая страница. Может быть надо как то особенно игнорить самоподписанный сертификат или что то в этом роде.

Можно проставить самоподписаный сертификат
Можно через dev tools protocol попросить хром игнорировать его Chrome DevTools Protocol - Security domain

Хотелось бы понять, в нем ли дело…может быть подтянутся знатоки логов и подскажу…

Вы правильно определили проблему headless хром не открывает https без валидного сертификата

1 лайк

На всякий случай упомяну, что мы несколько реальных проектов запускаем на Selenide + Headless Chrome, и всё прекрасно работает.

Но да, мы всегда запускаем тесты на http://localhost:8080. Нафига тут https-то вообще?

А есть пример как подсунуть Selenide настройки драйвера? А то что то я не нагулю ничего толкового.

Имхо лучше Post-ом постучать на session/%session_id/chromium/send_command_and_get_result с {“cmd”: “Security.setIgnoreCertificateErrors”, “params”{ “ignore”: true} } Хотя, возможно, в Selenide уже сделано что-то что вам поможет из коробки ( не пишу на нем, не знаю )

Сам Selenide по умолчанию запускает вебдрайвер с настройкой “принимай любые SSL сертификаты”:

browserCapabilities.setCapability(ACCEPT_SSL_CERTS, true);

Вы, наверное, сами создаёте вебдрайвер, вот и нарвались.

Нет. Возможно он что то там и запускает.
Вот так - работает:

DesiredCapabilities capabilities = new DesiredCapabilities();
capabilities.setAcceptInsecureCerts(true);
Configuration.browserCapabilities = capabilities;
1 лайк

Спасибо за решение. Подтверждаю, что на неподписанных сертификатах в headless режиме отдает пустую страницу. В обычном режиме все нормально.

Ок, спасибо. Может, стоит и эту настройку в селенид засунуть по умолчанию?..

P.S. Что же это у вас самоподписанные сертификаты до сих пор? В наше-то время? Ведь есть же https://letsencrypt.org - просто и бесплатно легальный ssl сертификат.