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

Appium + python - 监控appium server start

时间:2019-06-08 16:25:58      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:lis   port   set   ror   ace   list   %s   tar   time   

import os
import time as t

def start_appium(port = 4723,udid="4871660c"):
a = os.popen("netstat -ano | findstr ‘%s‘"%port)
t.sleep(2)
t1 = a.read()
print(t1)
if "LISTENING" in t1:
print("appium服务已经启动%s"%t1)
# s = t1.split(" ")
# s1 = [t for t in s if t != " "]
# pip = s1[-1].replace("\n","")
else:
# 启动appium服务
# appium -a 127.0.0.1 -p 4740 -U emulator-5554 127.0.0.1:62001 --no-reset
os.system("appium -a 127.0.0.1 -p %s -U %s --no-reset" % (port, udid))
print("Error")

start_appium()

Appium + python - 监控appium server start

标签:lis   port   set   ror   ace   list   %s   tar   time   

原文地址:https://www.cnblogs.com/Teachertao/p/10990953.html

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