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及以上版本

相关推荐
零意@2 小时前
ubuntu切换不同版本的python
windows·python·ubuntu
写bug的小屁孩4 小时前
前后端交互接口(三)
运维·服务器·数据库·windows·用户界面·qt6.3
hairenjing11236 小时前
在 Android 手机上从SD 卡恢复数据的 6 个有效应用程序
android·人工智能·windows·macos·智能手机
DisonTangor8 小时前
苹果发布iOS 18.2首个公测版:Siri接入ChatGPT、iPhone 16拍照按钮有用了
ios·chatgpt·iphone
- 羊羊不超越 -8 小时前
App渠道来源追踪方案全面分析(iOS/Android/鸿蒙)
android·ios·harmonyos
plmm烟酒僧9 小时前
Windows下QT调用MinGW编译的OpenCV
开发语言·windows·qt·opencv
Jtti11 小时前
Windows系统服务器怎么设置远程连接?详细步骤
运维·服务器·windows
小奥超人12 小时前
PPT文件设置了修改权限,如何取消权?
windows·经验分享·microsoft·ppt·办公技巧
hairenjing112321 小时前
使用 Mac 数据恢复从 iPhoto 图库中恢复照片
windows·stm32·嵌入式硬件·macos·word
九鼎科技-Leo1 天前
了解 .NET 运行时与 .NET 框架:基础概念与相互关系
windows·c#·.net