Webdriverio + phantomjs error on Amazon EC2 : ERROR: connect ECONNREFUSED 127.0.0.1:4444

544 Views Asked by At

I tried to run webdriverio + Phantomjs sample from (https://github.com/cognitom/webdriverio-examples/tree/master/wdio-phantomjs-only) on remote server. (AWS ec2)

But got an error

A service failed in the 'onPrepare' hook
Error: Exit code: 126
    at ChildProcess.<anonymous> (/home/ec2-user/wdio-phantomjs-only/node_modules/phantomjs-prebuilt/lib/phantomjs.js:117:18)
    at emitTwo (events.js:87:13)
    at ChildProcess.emit (events.js:172:7)
    at Process.ChildProcess._handle.onexit (internal/child_process.js:200:12)

Continue...
ERROR: connect ECONNREFUSED 127.0.0.1:4444
phantomjs
Error: connect ECONNREFUSED 127.0.0.1:4444
ERROR: connect ECONNREFUSED 127.0.0.1:4444
phantomjs
Error: connect ECONNREFUSED 127.0.0.1:4444

However, when i run this in local machine. it works fine. I Checked firewall(security group) on ec2 side, but every port is open.

here is the wide.conf.js

'use strict'

exports.config = {
  capabilities: [
    { browserName: 'phantomjs' }
    // If you want to use other browsers,
    // you may need local Selenium standalone server.
  ],
  services: ['phantomjs'],
  specs: [
    './test/e2e/*.js'
  ],
  exclude: [],
  maxInstances: 2,
  sync: true,
  logLevel: 'error',
  coloredLogs: true,
  waitforTimeout: 20000,
  connectionRetryTimeout: 90000,
  connectionRetryCount: 3,
  framework: 'mocha',
  reporters: ['spec'],
  mochaOpts: {
    ui: 'bdd',
    timeout: 30000
  }
}

Package.json

{
  "name": "webdriverio-example-wdio-wo-local-selenium",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "private": true,
  "scripts": {
    "test": "wdio test/wdio.conf.js"
  },
  "author": "Tsutomu Kawamura",
  "license": "MIT",
  "devDependencies": {
    "mocha": "^3.1.2",
    "wdio-mocha-framework": "^0.4.3",
    "wdio-phantomjs-service": "^0.2.2",
    "wdio-spec-reporter": "0.0.3",
    "webdriverio": "^4.2.16"
  }
}

can anybody give me a guide how to resolve this issue?

0

There are 0 best solutions below