iOS UI自动化(1)-环境搭建

首先感谢虫师,sunney0,码虫师,君子所爱, 不亦乐乎

一、搭建基础环境

安装方式自行Google即可。

1.brew安装  推荐版本Homebrew 3.0.5

2.java环境安装  Java(TM) SE Runtime Environment (build 14.0.2+12-46)

3.python3环境  Python 3.9.2

4.pip3环境        pip 21.0.1 from /usr/local/lib/python3.9/site-packages/pip (python 3.9)

5.xcode      Version 12.4 (12D4e)


二、插件及各种依赖库的安装

1.libimobiledevice (类似Android的adb命令工具)

> brew install libimobiledevice

2.ideviceinstaller(获取设备udid、安装app、卸载app、获取bundleid)

>brew install ideviceinstaller

3.carthage(第三方库管理工具)

> brew install carthage

4.ios-deploy(iOS不依赖xcode调试工具)

>brew install ios-deploy

5.node

>brew install node

6.npm

>brew install npm

7.appium-doctor

>npm install -g appium-doctor

8.usbmuxd

>brew install usbmuxd



三、环境检查

运行命令:appium-doctor

如图所示,有几个warn懒得搞了。

如有error,百度安装对应工具插件即可,通常为brew pip3 npm安装

四、git项目的拉取及运行

在这里本人使用的是Appium-mac-1.18.3.dmg中的WebDriverAgent项目,优先推荐该版本。

1.下载Appium-mac-1.18.3.dmg

https://github.com/appium/appium-desktop/releases/tag/v1.18.3

2.进入appium安装目录下WebDriverAgent文件夹(不同版本appium,地址略有不同)

>cd /Applications/Appium.app/Contents/Resources/app/node_modules/appium/node_modules/appium-WebDriverAgent

3.安装依赖

>mkdir -p Resources/WebDriverAgent.bundle

>sh ./Scripts/bootstrap.sh

安装报错见https://blog.csdn.net/qq_41030861/article/details/110528139

4.编译WebDriverAgent.xcodeproj

(使用Xcode打开WebDriverAgent(appium-WebDriverAgent)目目录下的WebDriverAgent.xcodeproj文件)

注意:1.想一个独一无二的名字!!!      2.创建一个开发者账号。

1.WebDriverAgent →TARGETS→WebDriverAgentLib的Bundle Identifier更改为自己命名的Identifier和设置ios版本。(所有Identifier注意保持一致!!)

2.WebDriverAgent →TARGETS→WebDriverAgentLib的Signing选择使用个人的证书。

3.WebDriverAgent →TARGETS→WebDriverAgentLib的Product Bundle

Identifier更改为自己命名的Identifier和ios deployment target

的版本号和目标手机的ios系统版本号一致。


4.WebDriverAgent →PROJECT→WebDriverAgent的Product Bundle

Identifier更改为自己命名的Identifierios deployment target

的版本号和目标手机的ios系统版本号一致。(所有Identifier注意保持一致!!)

5.WebDriverAgent →TARGETS→WebDriverAgentRunner的Product Bundle

Identifier更改为自己命名的Identifierios deployment target

的版本号和目标手机的ios系统版本号一致。(所有Identifier注意保持一致!!)

6.WebDriverAgent →TARGETS→WebDriverAgentRunner的Signing选择使用个人的证书。

7.文件目录WebDriverAgent→WebDriverAgentRunner→info.plist的Bundle Identifier更改为自己命名(和前面几部中保存一致)

5.xcode → product→ scheme →WebDriverAgentRunner  (选择执行方案)

6.xcode → product→ Destination → iOS device机器 也可通过如图所示进行勾选(选择执行构建的目标机)


7.客户端中生成待信任信息

xcode → product→ test


8.操作”信任“

打开手机发现桌面出现了一个无图标的icon 名称为:WebDriverAgent..

打开设置→通用→描述文件与设备管理    打开开发者app对应的待信任信息  点开→信任

如图:


9.成功连接iOS设备

手机上点击信任app后,xcode再次点击 product→test

查看运行log,出现 Start Test和Set Up字眼即证明成功(别管TestFail)

五、usbmuxd运用

1.确定设备连接状态,出现如图所示即可。

>idevice_id -l

2.设置端口映射,出现如图所示即可。

iproxy 8100 8100


3.浏览器输入以下地址并返回json数据验证端口映射成功。



六、all is done ..

至此 环境配置完成,可选择appium 或者Openatx进行测试。

我选 openatx/facebook-wda,因为它更加简单。

安装:

pip3 install -U facebook-wda

测试脚本:

import wda

c = wda.Client('http://localhost:8100')

print(c.status())

结果:

AttrDict({'message': 'WebDriverAgent is ready to accept commands', 'state': 'success', 'os': {'testmanagerdVersion': 28, 'name': 'iOS', 'sdkVersion': '14.2', 'version': '14.4'}, 'ios': {'ip': '10.xxx.xxx.61'}, 'ready': True, 'build': {'time': 'Mar 16 2021 16:11:44', 'productBundleIdentifier': 'com.facebook.WebDriverAgentRunner'}, 'sessionId': None})

ok,万事俱备。



AttrDict({'message': 'WebDriverAgent is ready to accept commands', 'state': 'success', 'os': {'testmanagerdVersion': 28, 'name': 'iOS', 'sdkVersion': '14.2', 'version': '14.4'}, 'ios': {'ip': '10.29.114.61'}, 'ready': True, 'build': {'time': 'Mar 16 2021 16:11:44', 'productBundleIdentifier': 'com.facebook.WebDriverAgentRunner'}, 'sessionId': None})

你可能感兴趣的:(iOS UI自动化(1)-环境搭建)