Skip to content Skip to sidebar Skip to footer

Android Emulator Close Using Telnet Via Appium Script

I am trying to close Android emulator using telnet command via Appium script but after executing the telnet command waiting for manual input for 'kill' command. Unable to execute t

Solution 1:

This command line use for close the emulator automatically via appium script.

Runtime.getRuntime().exec("tskill emulator-arm");

Solution 2:

use this code
tskill emulator-arm

Post a Comment for "Android Emulator Close Using Telnet Via Appium Script"