您好,登錄后才能下訂單哦!
小編給大家分享一下python基于Appium控制多設備并行執行的示例,相信大部分人都還不怎么了解,因此分享這篇文章給大家參考一下,希望大家閱讀完這篇文章后大有收獲,下面讓我們一起去了解一下吧!
首先實現對應的參數篇和對應的設備端口,
def startdevicesApp(): l_devices_list=[] port_list=[] alldevices=get_devices() if len(alldevices)>0: for item in alldevices: port=random.randint(1000,6000) port_list.append(port) desired_caps = { 'platformName': 'Android', 'deviceName': item, 'platformVersion': getPlatForm(item), 'appPackage': get_apkname(apk_path), # 包名 'appActivity': get_apk_lautc(apk_path), # apk的launcherActivity 'skipServerInstallation': True, "port":port } l_devices_list.append(desired_caps) return l_devices_list,port_list
接下來,我們去寫一個端口開啟服務。
class RunServer(threading.Thread):#啟動服務的線程 def __init__(self, cmd): threading.Thread.__init__(self) self.cmd = cmd def run(self): os.system(self.cmd) def start(port_list:list): def __run(url): time.sleep(10) response = urllib.request.urlopen(url, timeout=5) if str(response.getcode()).startswith("2"): return True for i in range(0, len(port_list)): cmd = "appium -p %s " % ( port_list[i]) if platform.system() == "Windows": # windows下啟動server t1 =RunServer(cmd) p = Process(target=t1.start()) p.start() while True: time.sleep(4) if __run("http://127.0.0.1:" + port_list[i]+ "/wd/hub/status"): break
我們開啟服務了,接下來,我們怎樣根據不同進程執行測試用例。
def runcase(devics): #執行測試用例 pass def run(deviceslist:list): pool = Pool(len(deviceslist)) for i in deviceslist: pool.map(runcase, i) pool.close() pool.join()
接下來,就是我們去組合形成最后的執行的代碼。
最終代碼展示
from appium import webdriver from androguard.core.bytecodes.apk import APK import os import random apk_path = "/Users/lileilei/Downloads/com.tencent.mobileqq_8.5.0_1596.apk" def get_devices() -> list: all_devices = [] cmd = "adb devices" reslut = os.popen(cmd).readlines()[1:] for item in reslut: if item != "\n": all_devices.append(str(item).split("\t")[0]) return all_devices def getPlatForm(dev: str) -> str: cmd = 'adb -s {} shell getprop ro.build.version.release'.format(dev) reslut = os.popen(cmd).readlines()[0] return str(reslut).split("\n")[0] def get_apkname(apk): a = APK(apk, False, "r") return a.get_package() def get_apk_lautc(apk): a = APK(apk, False, "r") return a.get_main_activity() import platform from multiprocessing import Process,Pool import time,urllib.request import threading class RunServer(threading.Thread):#啟動服務的線程 def __init__(self, cmd): threading.Thread.__init__(self) self.cmd = cmd def run(self): os.system(self.cmd) def start(port_list:list): def __run(url): time.sleep(10) response = urllib.request.urlopen(url, timeout=5) if str(response.getcode()).startswith("2"): return True for i in range(0, len(port_list)): cmd = "appium -p %s " % ( port_list[i]) if platform.system() == "Windows": # windows下啟動server t1 =RunServer(cmd) p = Process(target=t1.start()) p.start() while True: time.sleep(4) if __run("http://127.0.0.1:" + port_list[i]+ "/wd/hub/status"): break def startdevicesApp(): l_devices_list=[] port_list=[] alldevices=get_devices() if len(alldevices)>0: for item in alldevices: port=random.randint(1000,6000) port_list.append(port) desired_caps = { 'platformName': 'Android', 'deviceName': item, 'platformVersion': getPlatForm(item), 'appPackage': get_apkname(apk_path), # 包名 'appActivity': get_apk_lautc(apk_path), # apk的launcherActivity 'skipServerInstallation': True, "port":port } l_devices_list.append(desired_caps) return l_devices_list,port_list def runcase(devics): #執行測試用例 pass def run(deviceslist:list): pool = Pool(len(deviceslist)) for devices in deviceslist: pool.map(runcase, devices) pool.close() pool.join() if __name__=="__main__": l_devices_list,port_list=startdevicesApp() start(port_list) run(l_devices_list)
以上是“python基于Appium控制多設備并行執行的示例”這篇文章的所有內容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內容對大家有所幫助,如果還想學習更多知識,歡迎關注億速云行業資訊頻道!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。