If you are talking about a graphical interface, I assume your environment is Windows? Then you can use the following batch:
@ECHO OFF cd "C:\Program Files (x86)\Appium\node_modules\appium" node server.js --app "<path-to-your-project>\bin\<app-name>.apk" -p <port-to-listen-on> -dp <device-port-to-connect-to-device-on>
With this, you can run two different Appium servers and use them in parallel.
For a complete list of all available commands, enter node server.js --help .
If you installed Appium through npm, the path to server.js would be something like "C: \ Users \\ AppData \ Roaming \ npm \ node_modules \ appium".
qefzec
source share