发布:2023/10/23 21:58:17作者:管理员 来源:本站 浏览次数:487
研究了一段时间的Appium android app的自动化测试,工作中需要连接多台手机终端同时执行测试用例,我实现的方式是获取用例中需要执行用例的设备id个数以及实际连接到的设备数(通过adb devices获取),然后启动相应数量的Appium 服务,以便每个设备执行时并发进行并且互不影响。当然也可以通过selenium grid来实现,只是目前还在学习研究中,还是先把目前启动多个appium服务实现的方式记录下来。
一、Windows下启动单个appium服务
需要启动多个appium服务,那必须为每个服务指定端口。
启动appium服务的相关参数可以参考这篇博文:http://www.cnblogs.com/xinleishare/p/4793538.html
appium -a 127.0.0.1 -p 4726 --bootstrap-port 4780 --session-override --log "E:/appium" --command-timeout 600
通过该命令启动一个端口为4726,bootstrap端口为4780,Appium log存放路径为E盘,session可以覆盖并且命令超时为600s Appium服务,访问的URL地址为:http://127.0.0.1:4726/wd/hub。
为什么在这里指定bootstrap端口呢?当不指定bootstrap端口时,启动的appium服务默认的bootstrap端口为4724。当我们同时启动两个或多个appium服务,不指定bootstrap端口,那么所有服务bootstrap端口默认都为4723,当连接多个手机设备启动driver时,部分手机不执行用例,为了稳定起见,在这里分别指定bootstrap端口。
二、python脚本启动appium服务
为了根据连接设备的个数启动相应数量的appium服务,直接将appium服务的启动放在python脚本中运行。实现的方式是通过python脚本执行上面的cmd命令行。
def start_Appium(self, host, port, bootstrap_port, appium_log_path): #device_uid,
#appium -p 4723 -bp 4724 -U 22238e79 --command-timeout 600
errormsg = ""
appium_server_url =""
try:
if self.port_is_free(host,port):
cmd =‘start /b appium -a ‘+ host +‘ -p ‘+ str(port)+ ‘ --bootstrap-port ‘+ str(bootstrap_port) + ‘ --session-override --log ‘+ ‘"‘+appium_log_path + ‘" --command-timeout 600‘ #‘ -U ‘+ device_uid+
print cmd
#p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) #stdout=PIPE, stderr=PIPE)
p = subprocess.call(cmd, shell=True,stdout=open(‘E:/logs.log‘,‘w‘),stderr=subprocess.STDOUT)
print p
appium_server_url = ‘http://‘ + host +‘:‘ + str(port) +‘/wd/hub‘
print appium_server_url
else:
print "port:%d is used!"%(port)
except Exception, msg:
errormsg = str(msg)
return appium_server_url, errormsg
当然这里返回appium url后需要去验证是否真正启动了该appium服务(可以通过requests访问启动的url或者根据netstat查看端口)。
注意:代码中cmd使用了"start /b",主要是用于让cmd命令在后台执行,不影响python脚本的执行。如果不加“start /b”的话,启动appium服务后就停留在Appium日志状态,将不会返回执行后续的python脚本。
三、停止Appium服务
当用例执行完毕后,关闭当前的appium服务。实现方式是python脚本调用bat关闭Appium服务。python脚本将appium server的端口传入到bat中,bat脚本根据端口号获取其进程pid,然后获取应用名并通过taskkill关闭。
StopAppium.bat脚本如下:
@echo off
setlocal enabledelayedexpansion
rem %1传入端口号
for /f "delims= tokens=1" %%i in (‘netstat -aon ^| findstr %1 ‘) do (
set a=%%i
goto js
)
:js
taskkill /f /pid "!a:~71,5!"
rem pause>nul
python脚本执行如下:
def stop_Appium(self, Appium_url):
cmd = ‘StopAppium.bat %s‘%(self.get_port(Appium_url))
#print cmd
p = os.popen(cmd)
print p.read()
其中Appium_url为之前启动的Appium服务的URL地址,通过get_port方法是获取URL中的port。
© Copyright 2014 - 2024 柏港建站平台 ejk5.com. 渝ICP备16000791号-4