1.0.6 • Published 5 years ago

@saritasa/karma-selenium-launcher v1.0.6

Weekly downloads
6
License
MIT
Repository
github
Last release
5 years ago

karma-selenium-launcher

Launcher for selenium webdriver

Installation

npm install @saritasa/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.