You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
923 B
31 lines
923 B
var path = require('path');
|
|
|
|
exports.config = {
|
|
seleniumServerJar: path.join(__dirname, "../../../bin/selenium-server-standalone-2.53.0.jar"),
|
|
chromeDriver: path.join(__dirname, "../../../bin/chromedriver.exe"),
|
|
|
|
specs: ['../*.feature'],
|
|
|
|
framework: 'custom',
|
|
|
|
frameworkPath: require.resolve('protractor-cucumber-framework'),
|
|
|
|
cucumberOpts: {
|
|
require: '../step_definitions/*_steps.js',
|
|
format: 'pretty'
|
|
},
|
|
// multiCapabilities: [{
|
|
// browserName: 'chrome',
|
|
// chromeOptions: {
|
|
// args: ['--test-type']
|
|
// }
|
|
// }],
|
|
|
|
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']
|
|
}
|
|
|
|
}
|