adb shell向设备输入文本需要这么长时间,如何加快速度呢?

时间:2019-04-18 03:27:57

标签: android python adb-shell

现在我想使用Monkeyrunner执行python脚本,下面的代码,

from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
from time import sleep
device= MonkeyRunner.waitForConnection(15,"LGF460Ke173a45e")
for num in range(1,200):

inputText = '\'Here I am !\'' os.system("adb -s LGF460Ke173a45e shell input text " +inputText)

一切正常,但只有在将文本发送到设备时速度慢得多,有什么方法可以加快adb shell输入文本的速度或发送文本的其他方法?

0 个答案:

没有答案