11 lines
234 B
Python
11 lines
234 B
Python
|
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
|
||
|
|
||
|
print 'Waiting for device...'
|
||
|
device = MonkeyRunner.waitForConnection(100, 'emulator-5554')
|
||
|
print 'Finished'
|
||
|
if device :
|
||
|
print 'Success'
|
||
|
else :
|
||
|
print 'Failure'
|
||
|
|