Erro ao executar o Selenium Server via Nightwatch

Estou tentando executar um script de teste simples. Mas eu recebo o seguinte erro:

Eu tenho meu arquivo de configuração do nightwatch configurado da seguinte maneira:

nightwatch.conf.js

module.exports = {
  "src_folders": [
    "tests"// Where you are storing your Nightwatch e2e/UAT tests
  ],
  "output_folder": "./reports", // reports (test outcome) output by nightwatch
  "selenium": { 
    "start_process": true, // tells nightwatch to start/stop the selenium process
    "server_path": "./node_modules/selenium-standalone/.selenium/selenium-server/2.53.1-server.jar",
    "host": "127.0.0.1",
    "port": 4444, // standard selenium port
    "cli_args": {       "webdriver.chrome.driver" : "./node_modules/selenium-standalone/.selenium/chromedriver/2.25-x64-chromedriver"
    }
  },
  "test_settings": {
    "default": {
      "screenshots": {
        "enabled": true, // if you want to keep screenshots
        "path": './screenshots' // save screenshots here
      },
      "globals": {
        "waitForConditionTimeout": 5000 // sometimes internet is slow so wait.
      },
      "desiredCapabilities": { // use Chrome as the default browser for tests
        "browserName": "chrome"
      }
    },
    "chrome": {
      "desiredCapabilities": {
        "browserName": "chrome",
        "javascriptEnabled": true // set to false to test progressive enhancement
      }
    }
  }
}

guinea-pig.js

module.exports = { // addapted from: https://git.io/vodU0
  'Guinea Pig Assert Title': function(browser) {
    browser
      .url('https://saucelabs.com/test/guinea-pig')
      .waitForElementVisible('body')
      .assert.title('I am a page title - Sauce Labs')
      .saveScreenshot('ginea-pig-test.png')
      .end();
  }
};

O caminho do servidor e o caminho do chromedriver são precisos e a cópia mais recente. Eu também tenho a versão mais recente do chrome instalada. Alguém pode me ajudar a entender qual poderia ser o problema? Obrigado!

Editar: Também reiniciei o computador inteiro, o mesmo problema.

questionAnswers(2)

yourAnswerToTheQuestion