@saritasa/karma-selenium-launcher
v1.0.6
Published
A Karma plugin. Run tests on remote instance of Selenium
Downloads
7
Maintainers
Keywords
Readme
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.