我在monkeyrunner脚本中面临device.shell('ping -c 2 192.168.1.1')
中的一些问题。
它投掷
ShellCommandUnresponsiveException
[main] [com.android.chimpchat.adb.AdbChimpDevice]com.android.ddmlib.ShellCommandUnresponsiveException
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
请参阅上面的脚本。我该如何解决这个问题?
答案 0 :(得分:0)
你的ping等待很长时间
添加-t
以-t 1开头
答案 1 :(得分:0)
只需添加-t
即可。以下示例完美无缺!
device.shell('pm enable packageName -t 15')