무한 루프를 수행하여 간단한 안드로이드 애플리케이션을 테스트 할 수있는 스크립트를 만들었지 만 한 번만 실행하면됩니다.True 파이썬 스크립트는 무한 루프를 반복하지만 한번만 실행해야합니다. - Monkeyrunner
# Imports the monkeyrunner modules used by this program
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
# Connects to the current device, returning a MonkeyDevice object
device = MonkeyRunner.waitForConnection('66b6cc0e')
while True:
device.touch (300, 1750, 'DOWN_AND_UP')
MonkeyRunner.sleep(3)
device.touch(742, 1213, 'DOWN_AND_UP')
MonkeyRunner.sleep(10)
device.touch(554, 1613, 'DOWN_AND_UP')
MonkeyRunner.sleep(10)
# Push SEND MESSAGE
device.touch(300, 1750, 'DOWN_AND_UP')
MonkeyRunner.sleep(3)
device.touch(742, 1213, 'DOWN_AND_UP')
MonkeyRunner.sleep(10)
device.touch(554, 1613, 'DOWN_AND_UP')
MonkeyRunner.sleep(10)
다음 반복에서 '잠자기'시간이 '터치'액션에서 빠져 나옵니까? – nullpointer
또한'import time을 사용하여보십시오. time.sleep (10)' – nullpointer
잡히지 않으면 루프의 예외는 루프를 빠져 나갈 것입니다. – zvone