Skip to content

abirkholz/appium-controller

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

appium-controller

Starts and stops appium in the background programmatically. Runs on mac or windows.

Usage

From Node/JS

  let appiumController = require('appium-controller')

  //start appium with options
  appiumController.startAppium({
    port:'4724'
  });

  //or with default host:localhost, port:4723
  appiumController.startAppium();

  //shutdown with options
  appiumController.stopAppium({
    port:'4724'
  });

  //or with default port:4723
  appiumController.stopAppium();

From CLI

  appium-controller --start
  appium-controller --start -h localhost -p 4724
  appium-controller --stop
  appium-controller --stop -p 4724

Run 'appium-controller --help' for full list of options.

About

Starts and stops appium in the background

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 66.4%
  • JavaScript 33.6%