Python启动Appium 服务
目前我们已经实现了并发启动设备,但是我们的Appium服务启动还是手动档,比如使用Dos命令或者bat批处理来手动启动appium服务,启动效率低下。如何将启动Appium服务也实现自动化呢?
方案分析
我们可以使用python启动appium服务,这里需要使用subprocess模块,该模块可以创建新的进程,并且连接到进程的输入、输出、错误等管道信息,并且可以获取进程的返回值。
测试场景
使用Python启动2台appium服务,端口配置如下:
[if !supportLists]· [endif]Appium服务器端口:4723,bp端口为4724
[if !supportLists]· [endif]Appium服务器端口:4725,bp端口为4726
说明:bp端口( --bootstrap-port)是appium和设备之间通信的端口,如果不指定到时无法操作多台设备运行脚本。
代码实现
首先我们使用Python脚本启动单个appium服务:
[if !supportLists]· [endif]host:127.0.0.1
[if !supportLists]· [endif]port:4723
multi_appium.py
import subprocess
from time import ctime
def appium_start(host,port):
'''启动appium server'''
bootstrap_port = str(port + 1)
cmd = 'start /b appium -a ' + host + ' -p ' + str(port) + ' -bp ' + str(bootstrap_port)
print('%s at %s' %(cmd,ctime()))
subprocess.Popen(cmd, shell=True,stdout=open('./appium_log/'+str(port)+'.log','a'),stderr=subprocess.STDOUT)
if __name__ == '__main__':
host = '127.0.0.1'
port=4723
appium_start(host,port)
启动校验
启动后我们需要校验服务是否启动成功,校验方法如下:
[if !supportLists]1. [endif]首先查看有没有生成对应的log文件,查看log里面的内容。
[if !supportLists]2. [endif]使用如下命令来查看
netstat -ano |findstr 端口号
netstat 命令解释
netstat命令是一个监控TCP/IP网络的非常有用的工具,它可以显示路由表、实际的网络连接以及每一个网络接口设备的状态信息。输入 netstat -ano 回车.可以查看本机开放的全部端口;输入命令 netstat -h可以查看全部参数含义。
C:\Users\test>netstat -ano |findstr "4723"
TCP 127.0.0.1:4723 0.0.0.0:0 LISTENING 8224
关闭Appium服务
关闭进程有2种方式,具体如下:
通过netstat命令找到对应的Appium进程pid然后可以在系统任务管理器去关闭进程;
使用如下命令来关闭:
taskkill -f -pid appium进程id
多个appium服务启动
多个appium服务启动非常简单,只需在执行环境使用循环调用即可。
if __name__ == '__main__':
host = '127.0.0.1'
for i in range(2):
port=4723+2*i
appium_start(host,port)
网友评论