Skip to content

huang-xiao-jian/karma-simulator-launcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

karma-simulator-launcher

A plugin for Karma 0.12 to launch Remote WebDriver instances(Appium with simulator).

Usage

$ npm install karma-simulator-launcher

In your karma.conf.js file :

module.exports = function(config) {
  config.set({
    customLaunchers: {
      'Safari-Ipad-Remote': {
        base: 'Simulator',
        browserName: 'Safari',
        platformName: 'iOS',
        platformVersion: '8.1',
        deviceName: 'iPad Air',
        config: appium
      }
    },
    browsers: ['Safari-Ipad-Remote']
  });
}

pseudoActivityInterval

Interval in ms to do some activity to avoid killing session by timeout.

If not set or set to 0 - no activity will be performed.

About

Make multipart simulator karma UT on the same machine easier.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published