Remote Internjs debugging that runs on a chrome-plated edge

I am trying to remotely debug tests run by internjs. This is mainly Chrome, which is managed by Selenium and Chromedriver.

I set the Chromedriver debuggerAddress parameter to

debuggerAddress: '127.0.0.1:8765'

Now, when I run the tests, Selenium waits for a while, and not with a message:

FATAL ERROR
UnknownError: [POST http://localhost:4444/wd/hub/session / {"desiredCapabilities":{"browserName":"chrome","name":"tests/intern_local","idle-timeout":60,"selenium-version":"2.44.0","chromeOptions":{"debuggerAddress":"127.0.0.1:8765"}}}] unknown error: cannot connect to chrome at 127.0.0.1:8765
from chrome not reachable
  (Driver info: chromedriver=2.12.301326 (093c7e07b4a916b690e784b0374c7f618f1ea4be),platform=Mac OS X 10.10.1 x86_64) (WARNING: The server did not provide any stacktrace information)
Command duration or timeout: 60.64 seconds

I'm not sure what I need to do so that chrome connects to the server.

I tried:

  • Running a chronograph on this port ./chromedriver_2.11 --port=8765
  • Launch chrome with --remote-debugging-port=8765

But I have no other ideas how to start the chrome debug server.

Useful links I tried, this did not help me:

1 Chromedriver Chrome

Chrome, Mozilla

/Applications/Google\ Chrome.app/Contents/MacOS/Google\ Chrome --remote-debugging-port=9222 --no-first-run --no-default-browser-check --user-data-dir=$(mktemp -d -t 'chrome-remote_data_dir')

intern.capabilities = {
  'selenium-version': '2.44.0'
, 'chromeOptions': {
    debuggerAddress: '127.0.0.1:9222'
  }
};

, Intern, Intern Chrome. localhost:9222, , , . , .

Firefox WebIDE. localhost:9222, , .

+4
1

- , . webdriver . , webdriver . Google , .

+1

All Articles