1. 前言
群控,相信大部分人都不会陌生!印象里是一台电脑控制多台设备完成一系列的操作,更多的人喜欢把它和 hui 产绑定在一起!
事实上,群控在自动化测试中也被广泛使用!接下来的几篇文章,我将带大家聊聊企业级自动化中,群控正确的使用姿势!
本篇先从基础篇开始,聊聊使用「 python + adb 」命令如何编写一套群控脚本
2. 准备
在本机安装 android 开发环境,保证 adb 被添加到环境变量
将准备好的多台设备,使用数据线( 或者通过 hub )连接到电脑上
通过 adb devices 命令查看已经连接的所有设备
1
2
3
4
5
6
|
# 下面显示连接了3台设备
xag:test xingag$ adb devices
list of devices attached
822qedtl225t7 device
ca2b3455 device
de45d9323se96 device
|
3. 实战
自动化群控以闲鱼 app 的一次关键字搜索为例,步骤包含:打开应用、点击到搜索界面、输入内容、点击搜索按钮
下面通过7步来完成这一操作
1、获取目标应用的包名及初始化 activity
获取方式有很多种,主流方式包含:adb 命令、解析 apk、第三方 apk、无障碍服务
这里推荐使用 adb 命令这种方式
1
2
|
# 获取当前运行应用的包名及初始activity
adb shell dumpsys activity | grep - i run
|
打开闲鱼 app,在命令终端输入上面的命令,终端会将包名及 activity 名称显示出来
2、获取所有在线的设备
通过 adb devices 命令,通过输出内容,进行一次过滤,得到所有连接到 pc 端的设备
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# 所有设备id
devices = []
def get_online_devices( self ):
"""
获取所有在线的设备
:return:
"""
global devices
try :
for device_serias_name in exec_cmd( "adb devices" ):
# 过滤掉第一条数据及不在线的设备
if "device" in device_serias_name:
devices.append(device_serias_name.split( "\t" )[ 0 ])
devices = devices[ 1 :]
except exception as e:
print (e)
# 连上的所有设备及数量
return devices
|
3、群控打开目标应用
遍历设备列表,使用 adb -s 设备id shell am start -w 命令分别打开目标应用
1
2
3
4
5
6
7
8
9
|
def start_app( self ):
"""
打开app
:return:
"""
for device in devices:
os.popen( "adb -s " + device + " shell am start -w {}/{}" . format ( self .packagename, self .home_activity))
print ( '等待加载完成...' )
sleep( 10 )
|
4、封装执行步骤
为了方便管理设备,将每一步的操作写入到yaml文件中,可以通过 id 查找元素并执行点击操作、在输入框中输入内容、调用本地方法及输入参数
这里分别对应:保存 ui 树控件、查找输入框元素并执行点击操作、保存 ui 树控件(界面变化了)、输入文本内容、查看搜索按钮元素并执行点击操作
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# steps_adb.yaml
# 包名和activity
package_name: com.taobao.idlefish
home_activity: com.taobao.fleamarket.home.activity.initactivity
# 执行步骤
steps:
- save_ui_tree_to_local:
method: save_ui_tree_to_local
args:
- find_element_and_click:
id : com.taobao.idlefish: id / tx_id
- save_ui_tree_to_local:
method: save_ui_tree_to_local
- input_content:
content: python
- find_element_and_click:
id : com.taobao.idlefish: id / search_button
|
需要指出的是,为了提高群控的适配性,控件的实际坐标需要通过下面的步骤去获取:
- 导出界面的控件树
- 解析控件树 xml 文件,利用正则表达式得到目标控件的坐标值
- 计算出控件的中心点坐标
利用控件 id 获取元素中心点坐标的实现代码如下:
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
|
def get_element_position(element_id, uidump_name):
"""
通过元素的id,使用elementtree,解析元素控件树,查找元素的坐标中心点
:param element_id: 元素id,比如:
:return: 元素坐标
"""
# 解析xml
tree = et.parse( './../%s.xml' % uidump_name)
root = tree.getroot()
# 待查找的元素
result_element = none
# print('查找数目', len(root.findall('.//node')))
# 遍历查找node元素
# 通过元素id
for node_element in root.findall( './/node' ):
if node_element.attrib[ 'resource-id' ] = = element_id:
result_element = node_element
break
# 如果找不到元素,直接返回空
if result_element is none:
print ( '抱歉!找不到元素!' )
return none
# 解析数据
coord = re. compile (r "\d+" ).findall(result_element.attrib[ 'bounds' ])
# 中心点坐标
position_center = int (( int (coord[ 0 ]) + int (coord[ 2 ])) / 2 ), int (( int (coord[ 1 ]) + int (coord[ 3 ])) / 2 )
return position_center
|
5、区分设备
为了保证群控脚本执行不会产生干扰,在每个步骤执行之前,都应该将设备 id 作为参数进行区分
比如:将控件的界面控件树按照设备保存为不同的名称、点击界面和输入的命令传相应设备 id 作为入参
1
2
3
4
5
6
7
8
9
10
11
12
13
|
def save_ui_tree_to_local(dname):
"""
获取当前activity控件树,保存到本地
文件名固定为:uidump.xml
:param dname: 设备id
:return:
"""
exec_cmd( "adb -s %s shell uiautomator dump /data/local/tmp/%s.xml" % (dname, dname))
sleep( 2 )
exec_cmd( "adb -s %s pull /data/local/tmp/%s.xml ./../" % (dname, dname))
|
6、执行步骤
从 yaml 文件中读取执行步骤,遍历步骤集合,内部遍历设备列表,以保证每一个步骤,分别执行到每台设备上
1
2
3
4
5
|
# 执行步骤
for step in self .steps:
# 设备
for device in devices:
pass
|
接着,通过步骤名称匹配不同的操作,即可操作设备了
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# 操作名称
step_name = list (step)[ 0 ]
if step_name = = 'save_ui_tree_to_local' :
# 保存ui数到本地
method = step.get(step_name).get( 'method' )
save_ui_tree_to_local(device)
elif step_name = = 'find_element_and_click' :
element_id = step.get(step_name).get( 'id' )
# 获取元素的坐标
bound_search_input = get_element_position(element_id, device)
# 点击元素
exec_cmd( 'adb -s %s shell input tap %s %s' % (device, bound_search_input[ 0 ], bound_search_input[ 1 ]))
elif step_name = = 'input_content' :
input_content = step.get(step_name).get( 'content' )
# 模拟输入
exec_cmd( 'adb -s %s shell input text %s' % (device, input_content))
else :
print ( '其他操作步骤' )
|
7、关闭应用
当所有的操作完成之后,同样是遍历设备,利用 adb 命令去关闭 app 即可
1
2
3
4
5
6
7
|
def stop_all( self ):
"""
关闭应用
:return:
"""
for device in devices:
os.popen( "adb -s " + device + " shell am force-stop %s" % self .packagename)
|
4. 最后
本篇仅仅是 python 自动化群控最简单的实现方式,后面将和大家讨论更加复杂的实现方式。
项目地址:https://github.com/xingag/test_auto/tree/master/group_control
以上就是python实现自动化群控的步骤的详细内容,更多关于python 自动化群控的资料请关注服务器之家其它相关文章!
原文链接:https://mp.weixin.qq.com/s/g-AocWwh3nsTy3ZLJhVcBA