Skip to content

Latest commit

 

History

History
51 lines (34 loc) · 814 Bytes

README.md

File metadata and controls

51 lines (34 loc) · 814 Bytes

karma-webdriver-launcher

A plugin for Karma 0.12 to launch Remote WebDriver instances

Usage

$ npm install karma-webdriver-launcher

In your karma.conf.js file (e.g. using SauceLabs Connect - you need to have a scout tunnel open for this to work!):

module.exports = function(karma) {

  var webdriverConfig = {
    hostname: 'ondemand.saucelabs.com',
    port: 80,
    user: 'USERNAME',
    pwd: 'APIKEY'
  }


  ...

    config.set({

      ...
	  
      customLaunchers: {
        'IE7': {
          base: 'WebDriver',
		  config: webdriverConfig,
		  browserName: 'internet explorer',
		  platform: 'Windows XP',
		  version: '10',
		  'x-ua-compatible': 'IE=EmulateIE7',
		  name: 'Karma'
	    }
      },	  

      browsers: ['IE7'],

      ...

    });