In a recent project I needed to find a way of getting the Appium node.js app to run all the time on an iOS CI server. The requirements were as follows:
- Appium must be run from the checked out Git repository
- Launch Appium on start-up, in case the server needs to be rebooted
- If Appium crashes (it does sometimes), relaunch the server
- Output stdout and stderror to a log file that I can easily view using Console.app to debug problems with Appium buy cialis super active
This was achieved with the following launchd plist configuration file placed in ~/Library/LaunchAgents/.
[snippet id=”53″]
The WorkingDirectory setting is required, as Appium uses it to locate the instruments/client.js file.
Start the agent by running:
launchctl load ~/Library/LaunchAgents/<configuration name>.plist
Or stop it by running:
launchctl unload ~/Library/LaunchAgents/<configuration name>.plist
Hope this helps!
One reply on “Starting Appium Via launchd”
This works for me thank you