String Run(String command)
|
|
Run adb commands or other device shell commands.
Command : The command to run
The 'Run' command provides you the ability to run many commands for advanced capabilities.
The following example will demonstrate how to get the version of the device.
We will use the command getprop ro.build.version.release.
Step 1: Devices one is connected through cloud (Nexus 4) and other is connected locally via USB (Nexus 5).
Step 2: Getting the version number from cloud device (Nexus 4).
Step 3: Getting the version from the physically connected devices via USB (Nexus 5).
client.run("adb shell am start -a android.settings._SETTINGS")client.run("adb shell am start -a android.settings.WIFI_SETTINGS")client.run("adb shell input keyevent "KEYCODE_VOLUME_UP"')client.run("adb shell input keyevent "KEYCODE_VOLUME_DOWN"')client.run("adb shell am start -a android.intent.action.CALL -d tel:+6512345678");