码迷,mamicode.com
首页 > 移动开发 > 详细

Appium+Python app自动化测试之脚本启动和停止Appium服务

时间:2016-06-04 17:45:34      阅读:3331      评论:0      收藏:0      [点我收藏+]

标签:

研究了一段时间的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命令行。

 1 def start_Appium(self, host, port, bootstrap_port, appium_log_path): #device_uid,
 2         #appium -p 4723 -bp 4724 -U 22238e79 --command-timeout 600
 3         errormsg = ""
 4         appium_server_url =""
 5         try:
 6             if self.port_is_free(host,port):
 7                 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+
 8                 print cmd
 9                 #p = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.PIPE) #stdout=PIPE, stderr=PIPE)
10                 p = subprocess.call(cmd, shell=True,stdout=open(E:/logs.log,w),stderr=subprocess.STDOUT)
11                 print p
12                 appium_server_url = http:// + host +: + str(port) +/wd/hub
13                 print appium_server_url
14             else:
15                 print "port:%d is used!"%(port)
16         except Exception, msg:
17             errormsg = str(msg)
18         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脚本执行如下:

1   def stop_Appium(self, Appium_url):
2         cmd = StopAppium.bat %s%(self.get_port(Appium_url))
3         #print cmd
4         p = os.popen(cmd)
5         print p.read()

其中Appium_url为之前启动的Appium服务的URL地址,通过get_port方法是获取URL中的port。

以上就是自己实现的启动和停止appium服务方法,如果有写的不对的希望大家指出,如果有更好的方法也希望不吝赐教。

Appium+Python app自动化测试之脚本启动和停止Appium服务

标签:

原文地址:http://www.cnblogs.com/binghaixuefeng/p/5558804.html

(0)
(3)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!