Appium 并行测试多个设备

一、前置说明

在自动化测试中,经常需要验证多台设备的兼容性,Appium可以用同一套测试运例并行测试多个设备,以达到验证兼容性的目的。

解决思路:

  1. 查找已连接的所有设备;
  2. 为每台设备启动相应的Appium Server;
  3. 使用多线程执行 pytest 命令;

二、核心代码

python 复制代码
# test_multi_devices.py

import pytest

from driver.appium.manager import port_manager


@pytest.fixture(scope="session")
def devicename(request):
    return request.config.getoption("--devicename")


@pytest.fixture
def driver(devicename):
    from driver.appium.driver import WebDriver
    
    server_port = port_manager.get_server_port(devicename)
    trans_port = port_manager.get_trans_port(devicename)

    # appium 多设备并行注意事项:
    # 1. server_port: 必须传值,它是 appium server 的监听端口号,在启动多个 appium server的情况下,用于指定当前driver与哪个 server 进行通信;
    # 2. uuid: 必须传值,它是每个设备的唯一标识,用于appium server区分与哪台设备在通信,确保测试执行不会混淆;
    # 3. systemPort: 必须传值,是UiAutomator2 Server的6790端口绑定至本地的端口号,该端口用于在本地监听并接收从 UiAutomator2 Server 发出的请求;

    appium_server_url = f'http://localhost:{server_port}'
    capabilities = {
        "platformName": "Android",
        "automationName": "uiautomator2",
        "deviceName": devicename,
        "udid": devicename,
        "app": "D:\\resources\\ApiDemos-debug.apk",
        "systemPort": trans_port
    }

    driver = WebDriver(command_executor=appium_server_url, capabilities=capabilities)

    yield driver

    driver.quit()


def test_runner(driver):
    driver.smart_find_element(by='text', value='App').click()
    driver.smart_find_element(by='text', value='Notification').click()
    driver.smart_find_element(by='text', value='NotifyWithText').click()
    driver.smart_find_element(by='text', value='SHOW SHORT NOTIFICATION').click()

    element = driver.get_toast('Short notification')
    assert element.text == 'Short notification'
python 复制代码
# main.py

import threading
import pytest
from driver.appium.manager import MobileDevicesManager, AppiumServersManager, device_manager

from driver.appium.manager import port_manager

PY_RUNNER = 'tests/test_multi_devices.py'


def start_server_and_run_pytest(devicename):
    """
    启动Appium Server,并且执行pytest
    """
    port = port_manager.get_server_port(devicename)

    # 为每台设备启动一个appium server
    server_manager = AppiumServersManager(port)
    server_manager.start_server()

    # 执行pytest
    pytest.main([PY_RUNNER, '-s', '-v', '--devicename', devicename])


def run_multi_devices():
    """
    多设备并行测试
    """
    devices = device_manager.get_connected_devices()

    threads = []
    for devicename in devices:
        thread = threading.Thread(target=start_server_and_run_pytest, args=(devicename,))
        threads.append(thread)

        # 启动线程
        thread.start()

    # 等待所有线程完成
    for thread in threads:
        thread.join()


if __name__ == '__main__':
    import logging.config

    logging.config.fileConfig('conf/logging.conf')

    # 执行并发测试
    run_multi_devices()

三、Demo验证

当前有3台设备连接,执行代码,会启动3个appium server:

3台设备会同时执行测试(有1台为手机,不方便截图):

四、appium 多设备并行注意事项

python 复制代码
    # 1. server_port: 必须传值,它是 appium server 的监听端口号,在启动多个 appium server的情况下,用于指定当前driver与哪个 server 进行通信;
    # 2. uuid: 必须传值,它是每个设备的唯一标识,用于appium server区分与哪台设备在通信,确保测试执行不会混淆;
    # 3. systemPort: 必须传值,是UiAutomator2 Server的6790端口绑定至本地的端口号,该端口用于在本地监听并接收从 UiAutomator2 Server 发出的请求;

	appium_server_url = f'http://localhost:{server_port}'
    capabilities = {
        "platformName": "Android",
        "automationName": "uiautomator2",
        "deviceName": devicename,
        "udid": devicename,
        "app": "D:\\resources\\ApiDemos-debug.apk",
        "systemPort": trans_port
    }
    driver = WebDriver(command_executor=appium_server_url, capabilities=capabilities)

欢迎技术交流:

相关推荐
镭封1 天前
Appium配置2024.11.12
appium
几何DDDMm2 天前
Python自动化测试---Appium
开发语言·python·appium
qq_433716953 天前
编写第一个 Appium 测试脚本:从安装到运行!
自动化测试·软件测试·jmeter·ci/cd·职场和发展·appium·jenkins
小码哥说测试6 天前
编写第一个 Appium 测试脚本:从安装到运行!
软件测试·测试工具·职场和发展·单元测试·appium·postman·性能测试
学知识拯救世界8 天前
appium启动 install driver安装驱动
appium
小码哥说测试10 天前
测试分层:减少对全链路回归依赖的探索!
自动化测试·软件测试·人工智能·测试工具·appium·pytest·postman
帅得不敢出门12 天前
Python+Appium+Pytest+Allure自动化测试框架-安装篇
python·appium·自动化·pytest·测试·allure
软件20512 天前
【Arch Linux 上安装 Appium 】
linux·运维·appium
软件20512 天前
【appium 安卓10 QQ发送消息】
android·appium
帅得不敢出门14 天前
Python+Appium+Pytest+Allure自动化测试框架-代码篇
python·appium·自动化·pytest·测试·allure