Skip to content

Latest commit

 

History

History
executable file
·
38 lines (32 loc) · 819 Bytes

README.md

File metadata and controls

executable file
·
38 lines (32 loc) · 819 Bytes

karma-selenium-launcher

Launcher for selenium webdriver

Installation

npm install karma-selenium-launcher --save-dev

Configuration

//karma.conf.js
module.exports = function(config){
  var webDriverConfig = {
    desiredCapabilities: {
      //capabilities of driver
    },
    host: 'localhost',
    port: 4444,
    path: '/wd/hub'
  };

  config.set({
    customLaunchers: {
      selenium_chrome: {
      base: 'Selenium',
      config: webDriverConfig,
      name: 'Karma Test',
      browserName: 'chrome'
      }
    },
    browsers: ['selenium_chrome']
  });
}

Refer to webdriverio config documentation as well as selenium's for desiredCapabilities.