本文介绍了通过appium脚本使用telnet Android模拟器关闭的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我试图关闭使用通过Appium脚本telnet命令Android模拟器,但执行telnet命令等待人工输入后杀的命令。无法与Appium脚本执行杀的命令。
调用Runtime.getRuntime()EXEC(远程登录本地主机5554)。
流程PROC =调用Runtime.getRuntime()EXEC(杀)。
BufferedReader中R =新的BufferedReader(新的InputStreamReader(proc.getInputStream()));
的System.out.println(executed3);
串线;
而(真){
行= r.readLine();
如果(线== NULL){打破; }
的System.out.println(线);
}
解决方案
通过appium脚本自动此命令行用于关闭模拟器。
调用Runtime.getRuntime()EXEC(TSKILL仿真器臂);
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 the "Kill" command along with Appium script.
Runtime.getRuntime().exec("telnet localhost 5554");
Process proc= Runtime.getRuntime().exec("kill");
BufferedReader r = new BufferedReader(new InputStreamReader(proc.getInputStream()));
System.out.println("executed3");
String line;
while (true) {
line = r.readLine();
if (line == null) { break; }
System.out.println(line);
}
解决方案
This command line use for close the emulator automatically via appium script.
Runtime.getRuntime().exec("tskill emulator-arm");
这篇关于通过appium脚本使用telnet Android模拟器关闭的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!