var path = require('path'); exports.config = { //baseUrl: 'http://localhost:3000/', seleniumServerJar: path.join(__dirname, "../../../bin/selenium-server-standalone-2.53.0.jar"), chromeDriver: path.join(__dirname, "../../../bin/chromedriver.exe"), specs: ['../spec/home.spec.js'], ////// chrome configuration // multiCapabilities: [{ // browserName: 'chrome', // chromeOptions: { // args: ['--test-type'] // } // }], ////// phantomjs configuration capabilities: { 'browserName': 'phantomjs', 'phantomjs.binary.path': path.join(__dirname, "./node_modules/phantomjs/bin/phantomjs"), 'phantomjs.cli.args': ['--ignore-ssl-errors=true', '--web-security=false'], 'phantomjs.ghostdriver.cli.args': ['--loglevel=DEBUG'] } }