#! /usr/bin/env monkeyrunner
from com.android.monkeyrunner import MonkeyRunner
device = MonkeyRunner.waitForConnection()
device.touch(240, 740)
device.type('5551234')
MonkeyRunner.sleep(3)
这很好用问题是当我有一些这样的空白时:
device.type('55 5 12 34')
仅打印“55”
如何打印空白字符?