Windows实现appium+iOS自动化测试

在前面的文章介绍了Windows上安装配置tidevice,环境搭建好后就实现了在Windows运行iOS自动化的第一步,接下来本文重点介绍在Windows上如何运行iOS自动化测试。

如果没有安装好tidevice的可以参考文章 https://blog.csdn.net/dou_being/article/details/120401944

一、启动XCTest

1、在终端输入命令:

tidevice xctest -B com.facebook.WebDriverAgentRunner.xctrunner

2、修改监听端口为8200, 并显示调试日志:

tidevice xctest -B com.facebook.WebDriverAgentRunner.xctrunner -e USB_PORT:8200 —debug

3、转发请求到手机并把传输的内容用hexdump的方法print出来:

tidevice relay -x 8100 8100

二、运行WebDriverAgent

1、在终端输入命令:


tidevice wdaproxy -B com.xxx.xxx.WebDriverAgentRunner.xctrunner --port 8200

2、appium需要配置以下参数:

"usePrebuiltWDA": "false",

"useXctestrunFile": "false",

"skipLogCapture": "true"

具体Appium Desired Capabilities配置如下:

Windows实现appium+iOS自动化测试_第1张图片

 3、运行成功后如图所示:

Windows实现appium+iOS自动化测试_第2张图片

欢迎关注公众号:

Windows实现appium+iOS自动化测试_第3张图片

你可能感兴趣的:(移动端自动化测试,iOS,tidevice,iOS自动化测试)