forked from dtmilano/AndroidViewClient
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.py
More file actions
executable file
·65 lines (55 loc) · 1.67 KB
/
settings.py
File metadata and controls
executable file
·65 lines (55 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#! /usr/bin/env python
'''
Copyright (C) 2012 Diego Torres Milano
Created on Feb 1, 2012
@author: diego
'''
import re
import sys
import os
# This must be imported before MonkeyRunner and MonkeyDevice,
# otherwise the import fails.
# PyDev sets PYTHONPATH, use it
try:
for p in os.environ['PYTHONPATH'].split(':'):
if not p in sys.path:
sys.path.append(p)
except:
pass
try:
sys.path.append(os.path.join(os.environ['ANDROID_VIEW_CLIENT_HOME'], 'src'))
except:
pass
from com.dtmilano.android.viewclient import ViewClient
package='com.android.settings'
activity='.Settings'
component=package + "/" + activity
device, serialno = ViewClient.connectToDeviceOrExit()
if True:
device.startActivity(component=component)
ViewClient.sleep(3)
device.press('KEYCODE_DPAD_DOWN') # extra VMT setting WARNING!
ViewClient.sleep(1)
device.press('KEYCODE_DPAD_CENTER', MonkeyDevice.DOWN_AND_UP)
device.press('KEYCODE_DPAD_DOWN', MonkeyDevice.DOWN_AND_UP)
#device.press('KEYCODE_DPAD_DOWN', MonkeyDevice.DOWN_AND_UP)
#device.press('KEYCODE_DPAD_DOWN', MonkeyDevice.DOWN_AND_UP)
#device.press('KEYCODE_DPAD_CENTER', "DOWN_AND_UP")
#device.press('KEYCODE_DPAD_CENTER', "DOWN_AND_UP")
vc = ViewClient(device, serialno)
regex = "id/checkbox.*"
p = re.compile(regex)
found = False
for id in vc.getViewIds():
#print id
m = p.match(id)
if m:
found = True
attrs = vc.findViewById(id)
if attrs['isSelected()'] == 'true':
print "Wi-Fi is",
if attrs['isChecked()'] != 'true':
print "not",
print "set"
if not found:
print "No Views found that match " + regex