multi-device-runner icon indicating copy to clipboard operation
multi-device-runner copied to clipboard

A sample of running Airtest on multiple devices

Results 9 multi-device-runner issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/57787585/168954446-99e891aa-c407-4e8d-9c7e-a678059627f8.png)

我在测试中,poco 只对一台设备起作用. 例如下面代码,每次只会对一台设备加快滑动操作,而且每一次手机都会弹出 安装 pocoservice 程序 ``` # -*- encoding=utf8 -*- __author__ = "to" import logging logger = logging.getLogger("airtest") logger.setLevel(logging.ERROR) from airtest.core.api import * from airtest.cli.parser import cli_setup from poco.drivers.android.uiautomation...

E:\TestDEV\multi-device-runner>python3 run.py [08:36:20][DEBUG] D:\Python37\lib\site-packages\airtest\core\android\static\adb\windows\adb.exe devices failed to create process. Report build Failed. File not found in dir test_blackjack.air\log\5LM0216219001163\log.txt failed to create process. Report build Failed. File not found in dir...

坑死了·· ret = subprocess.call(cmd, cwd=os.getcwd() ) 这里不能写shell=True !!!!!

使用安卓设备连接调试运行时报以下错误 pkg_resources.DistributionNotFound: The 'facebook-wda==0.2.1' distribution was not found and is required by airtest 网上查了一下facebook-wda是用于ios自动化,本地安装了这个模块也不行,麻烦问一下这个怎么解决

运行环境:Darwin B-523FMD6M-2359.local 21.6.0 Darwin Kernel Version 21.6.0: Sat Jun 18 17:07:25 PDT 2022; root:xnu-8020.140.41~1/RELEASE_X86_64 x86_64 python: Python 3.9.13 运行命令原来是数组形式的,在我的环境中报错了。修改成一个字符串就可以正常运行了。 cmd = 'airtest report {} --log_root {} --outfile {}'.format( air, log_dir,...

shell=True 参数导致命令行解析错误。airtest report 这个命令本身就包含空格,使用 shell=True 会导致错误解析命令行而失败 导致最后没有生成报告。

https://github.com/Github-Benjamin/multi-device-runner-pro-max > # Airtest多设备多脚本测试框架(增强版) > > multi-device-runner-pro-max 基于官方 multi-device-runner 重构,支持智能任务调度与聚合报告 > > [![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg)](LICENSE) > ![Python Version](https://img.shields.io/badge/python-3.7%2B-green) > > ## 🚀 核心优势 > > ### 突破官方限制 > | 功能 | 官方版本...