猴子跑者投掷"ShellCommandUnrespo​nsiveException" - 有什么解决方法吗?



我在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%sn****************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

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

您的ping等待长

添加一个-t

从-t 1 开始

只需添加-t。下面的一个例子效果很好!

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

相关内容

  • 没有找到相关文章

最新更新