Monkeyrunner抛出“ShellCommandUnrespo nsiveException” - 任何解决方法?

时间:2012-02-07 14:04:46

标签: adb python-2.7 monkeyrunner android-sdk-1.6 jython-2.5

我在monkeyrunner脚本中面临device.shell('ping -c 2 192.168.1.1')中的一些问题。 它投掷

ShellCommandUnrespo‌​nsiveException 
[main] [com.android.chimpchat.adb.AdbChimpDevice]com.android.ddmlib.ShellCommandUnrespo‌​nsiveException 
while (count<1000) :
device.shell('dmesg -c')
print '****swithing OFF wifi in loop NO-',count
device.touch(400,155,MonkeyDevice.DOWN_AND_UP)
time.sleep(10)
print '****switching ON wifi in loop NO-',count
device.touch(400,155,MonkeyDevice.DOWN_AND_UP)
time.sleep(25)
fd=open('pingstats.txt','a+b')
fd.write('***Loop-%i \n************\n%s\n****************\n' % (int(count),ping))
ping = device.shell('ping -c 2 192.168.1.1')
status=re.search('unreachable',ping)
if status:
    dmesg=device.shell('dmesg')
    fd.write(logcat)
fd.close()
count = count + 1

请参阅上面的脚本。我该如何解决这个问题?

2 个答案:

答案 0 :(得分:0)

你的ping等待很长时间

添加-t

以-t 1开头

答案 1 :(得分:0)

只需添加-t即可。以下示例完美无缺!

device.shell('pm enable packageName -t 15')