tidevice+appium在windows系统实施iOS自动化

之前使用iOS手机做UI自动化都是在Mac电脑上进行的,但是比较麻烦,后来看到由阿里开源的tidevice工具可以实现在windows上启动WDA,就准备试一下,记录一下过程。

tidevice的具体介绍可以参考一下这篇文章:tidevice 开源:不依赖 Xcode 也能启动 WDA · TesterHome
https://testerhome.com/topics/27758

环境准备

使用tidevice需要用到的环境包括:

python

tidevice

iTools

appium v1.20.0以上

已经安装WDA的iOS真机

安装tidevice

安装好python环境后,使用以下命令安装tidevice
pip3 install -U tidevice

安装后输入命令tidevice version查看版本

命令tidevice list查看连接的设备

命令tidevice applist查看设备上安装的应用

启动WDA

使用命令tidevice -u [设备udid] wdaproxy -B [wda的bundleid] --port 8100启动WDA

此时在浏览器中打开地址http://127.0.0.1:8100/status ,显示如下信息就表示WDA启动正常了

使用Appium+tidevice进行自动化

在appium配置中参照以下设置:

{

"platformName": "ios",

"deviceName": "iPhone",

"platformVersion": "13.6",

"bundleId": "目标app的bundleid",

"udid": "iphone的udid",

"webDriverAgentUrl": "http://localhost:8100",

"noReset": true,

"usePrebuiltWDA": false,

"useXctestrunFile": false,

"skipLogCapture": true,

"automationName": "XCUITest"

}

例如:

package testcase;

import io.appium.java_client.ios.IOSDriver;

import org.openqa.selenium.By;

import org.openqa.selenium.WebDriver;

import org.openqa.selenium.WebElement;

import org.openqa.selenium.remote.DesiredCapabilities;

import org.openqa.selenium.support.ui.WebDriverWait;

import java.net.MalformedURLException;

import java.net.URL;

import java.util.function.Function;

public class IosTest {

private static IOSDriver iosDriver;

public static void main(String[] args) throws MalformedURLException {

DesiredCapabilities capabilities = new DesiredCapabilities();

capabilities.setCapability("udid", "设备序列号");

capabilities.setCapability("deviceName", "设备名称");

capabilities.setCapability("platformVersion", "11.3");

capabilities.setCapability("bundleId", "被测应用的bundleId");

capabilities.setCapability("webDriverAgentUrl", "http://localhost:8100");

capabilities.setCapability("usePrebuiltWDA", "false");

capabilities.setCapability("useXctestrunFile", "false");

capabilities.setCapability("skipLogCapture", "true");

capabilities.setCapability("platformName", "iOS");

capabilities.setCapability("automationName", "XCUITest");

iosDriver = new IOSDriver(new URL("http://127.0.0.1:4723/wd/hub"), capabilities);

WebElement element = findElement(iosDriver, "//XCUIElementTypeButton[@name='理财']");

element.click();

element = findElement(iosDriver, "//XCUIElementTypeStaticText[@name='全部']");

element.click();

}

private static WebElement findElement(WebDriver driver, String xpath){

WebDriverWait wait = new WebDriverWait(driver, 60);

return wait.until(new Function<WebDriver, WebElement>() {

public WebElement apply(WebDriver webDriver) {

return webDriver.findElement(By.xpath(xpath));

}

});

}

}

遇到的问题

1.最开始使用appium1.15.1,创建driver时appium一直报错

后来才发现tidevice要求appium要在1.20.0及以上版本

相关推荐
alloc1 天前
Foundation Models Framework
ios
A懿轩A1 天前
【2025最新】Flutter 编译开发 鸿蒙HarmonyOS 6 项目教程(Windows)
windows·flutter·华为·openharmony·开源鸿蒙
ajassi20001 天前
开源 Objective-C IOS 应用开发(二十三).a静态库的封装和使用
ios·开源·objective-c
明远湖之鱼1 天前
浅入理解流式SSR的性能收益与工作原理
前端·ios
白玉cfc1 天前
【iOS】多线程基础
macos·ios
2501_915909061 天前
iOS APP 抓包全流程解析,HTTPS 调试、网络协议分析与多工具组合方案
android·ios·小程序·https·uni-app·iphone·webview
伤心男孩拯救世界(Code King)1 天前
搭建Appium详细教程
appium
say_fall1 天前
WinAPI 极简教程:超简单的 Windows 接口入门
c语言·windows
2501_915106321 天前
游戏上架 App Store 的技术流程解析 从构建到审核的全流程指南
游戏·macos·ios·小程序·uni-app·cocoa·iphone
非专业程序员1 天前
精读 GitHub - servo 浏览器(一)
前端·ios·rust