1.说明
之前在做手机app 自动化的时候,每次在自动化测试脚本运行之前,需要手动启动appium 服务器,在开发环境中这样做没有什么问题,但是在服务器端执行自动化代码,这样就有有欠妥当。
所有,在实际的开发过程中,我们就需要python代码通过 python的方式启动 appium 服务。
2.Python执行cmd面板中命令行代码
os.system 方法可以模拟执行命令行命令。但是缺点是:它是同步的,当命令行中的命令执行完成之后,才会接着往下执行。
但是,我们使用appium需要的是,后台开启一个进程之后,可以继续执行我们的其他测试用例代码,当前方法不满足
import osos.system('Ping www.baIDu.com')
执行python代码,运行结果:
3.查进程号,杀掉进程的cmd命令
# windows命令netstat -ano | findstr 4723 # 根据进程使用的端口号,查找进程的进程号taskkill -f -pID 22668 # 根据进程号,杀掉进程# mac命令lsof -i tcp:4723kill 22668
4. Python使用subprocess 子进程的方式启动appium
""" appium启动/关闭处理类"""import subprocessimport os,sysimport timedef stop_appium(port): mac_cmd = f"lsof -i tcp:{port}" win_cmd = f"netstat -ano | findstr {port}" # 判断 *** 作系统 os_platform = sys.platform print(' *** 作系统:',os_platform) # #windows 系统 if os_platform == "win32": win_p = subprocess.Popen(win_cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE) for line in win_p.stdout.readlines(): if line: line = line.decode('utf8') if "ListENING" in line: win_pID = line.split("ListENING")[1].strip() os.system(f"taskkill -f -pID {win_pID}") else: # unix系统 p = subprocess.Popen(mac_cmd,shell=True,stdout=subprocess.PIPE,stderr=subprocess.PIPE) for line in p.stdout.readlines(): line = line.decode('utf8') if "node" in line: stdoutline = line.split(" ") # print(stdoutline) pID = stdoutline[4] os.system(f"kill {pID}")def start_appium(port): """ 启动appium 服务 :param port: 服务的端口号 :return: """ stop_appium(port) cmd = f"appium -p {port}" logsdir = os.path.join(os.path.dirname(os.path.dirname(os.path.abspath(__file__))), "logs") appium_logs = os.path.join(logsdir,"appium-logs") if not os.path.exists(appium_logs): os.mkdir(appium_logs) log_name = str(port) + '-' + time.strftime('%Y_%m_%d') +".log" appium_logs_dirname = os.path.join(appium_logs,log_name) subprocess.Popen(cmd, shell=True, stdout=open(appium_logs_dirname, mode='a', enCoding="utf8"), stderr=subprocess.PIPE)# # 单个方法调试代码if __name__ == '__main__': start_appium(4723) stop_appium(4723)
总结
以上是内存溢出为你收集整理的app----使用Python代码启动/关闭Appium全部内容,希望文章能够帮你解决app----使用Python代码启动/关闭Appium所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)