Skip to content

Instantly share code, notes, and snippets.

@Bablzz
Created May 10, 2017 18:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Bablzz/a3c826b596444241b3127d2c14338057 to your computer and use it in GitHub Desktop.
Save Bablzz/a3c826b596444241b3127d2c14338057 to your computer and use it in GitHub Desktop.
module.exports = function (config) {
var webdriverConfig = {
hostname: IP удаленной машины, на котором запущен hub,
port: Port удаленной машины, на котором запущен hub
};
config.set({
hostname: IP локальной машины, на которой запускаются тесты, именно IP, а не localhost,
basePath: './',
frameworks: ["jasmine"],
reporters: ['progress'],
logLevel: config.LOG_INFO,
customLaunchers: {
'IE': {
base: 'WebDriver',
config: webdriverConfig,<
browserName: 'internet explorer',
name: 'Karma'
}
},
browsers: ['IE'],
...
)};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment