leipfise 发表于 2016-11-23 11:42:46

monkeyrunner循环出错,求指点

# coding:utf-8
from com.android.monkeyrunner import MonkeyRunner,MonkeyDevice
device=MonkeyRunner.waitForConnection(6,'emulator-5554')
for i in range(1,10):
device.startActivity(component="com.xs.cn/.activitys.LoadingActivity")
MonkeyRunner.sleep(2)
device.touch(280,470,"DOWN_AND_UP")
MonkeyRunner.sleep(1)
device.press('KEYCODE_BACK','DOWN_AND_UP')
MonkeyRunner.sleep(1)
device.touch(485,1072,"DOWN_AND_UP")
print i
else:
print('end')
执行后出错了,是哪里不对呢

若尘_51 发表于 2016-11-23 13:54:33

报什么错误?   你的脚本怎么没有空格的,还有为啥for循环里面还有else?

Bugkiller 发表于 2016-11-23 15:38:25

前排

leipfise 发表于 2016-11-24 15:01:23

若尘_51 发表于 2016-11-23 13:54
报什么错误?   你的脚本怎么没有空格的,还有为啥for循环里面还有else?

我是在cmd执行的 执行后出现一大串信息那正常应该是没有else么

水鱼来测试 发表于 2016-12-24 09:12:43

for i in range(1,10): 直接加这句就行了,
页: [1]
查看完整版本: monkeyrunner循环出错,求指点