我有一个.bat文件,它运行用于测试应用程序的脚本并将日志打印到文件我拥有我手动测试它们的所有命令。
问题: 输入命令adb shell后,shell将在命令提示符下打开。我用root @ generic编写了在shell中输入的下一个命令 命令没有通过,它只是在那个地方等待。
我必须在命令前键入什么才能使它们出现
我拥有的例子
cd directory of sdk
adb
adb shell
am instrumentation ... (this is the command that won't go through once the shell is open.
任何帮助表示我尝试了一些没有成功的事情
答案 0 :(得分:0)
只需在批处理文件中使用以下行:
adb shell am instrumentation
将连接到Android设备上的shell并运行am
命令。