Appium 是一个自动化测试框架,可与 native、混合和移动 web 应用程序一起使用。它使用WebDriver (Facebook开源)协议驱动 iOS、Android 和 Windows 应用程序。
Appium 支持多种语言。
Appium iOS 测试环境的搭建
安装 appium 有两种方式,一种是通过命令行终端方式,一种是 Appium Desktop。
我使用的是 Appium Desktop ,这个自带图形界面,安装也简单的。
首先下载桌面版 Appium Desktop ,并安装。
正常工作要确保5个前提条件:
- iOS 设备系统必须是 iOS 9.3及以上
- macOS 系统必须是10.11 或10.12
- Xcode 版本为 Xcode 8及以上
- Appium 版本为1.6及以上
- 安装所需依赖库,包括:
node # brew install node
npm # brew install npm
carthage # brew install carthage
模拟器测试的话这些基本就可以了。
是否安装成功可以用 appium-doctor 验证。
终端执行安装命令
npm install -g appium-doctor
安装成功后执行
appium-doctor # 这个命令包含 android 的依赖库或软件
// 或者
appium-doctor --ios
现在我们来启动 Appium Desktop !
点击 Start ,进入 Server 界面,如果一切正常,会如下图所示。
在点击右上角 搜索 按钮 进入 inspector session 界面。
Appium 有多语言设置,想要中文的同学们,可以进行设置哦~
View ---> Languages ---> 中文
这里呢,我写了一个简单的 iOS AppiumDemo,进行模拟器测试。
main.storyboard 里,拖拽了一个输入框和一个按钮。
按钮有一个事件。
#import "ViewController.h"
@interface ViewController ()
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (IBAction)buttonAction:(id)sender {
UIAlertController *alert = [UIAlertController alertControllerWithTitle:@"点击了按钮" message:nil preferredStyle:UIAlertControllerStyleAlert];
UIAlertAction *cancel = [UIAlertAction actionWithTitle:@"确定" style:UIAlertActionStyleCancel handler:nil];
[alert addAction:cancel];
[self presentViewController:alert animated:YES completion:nil];
}
@end
指定模拟器 iPhone 6 ,系统版本 10.0,运行程序。
回到 inspector session 界面设置所需功能。
你可以先看看 所需功能文档。
{
"platformName": "iOS", # 平台名称 iOS / Android ...
"platformVersion": "10.0", # 系统版本
"deviceName": "iPhone 6", # 设备名称
"newCommandTimeout": "300", # Appium服务器待appium客户端发送新消息的时间。默认为60秒
"bundleId": "BB.AppiumDemo", # iOS 包名
"onReset": true # true:不重新安装APP,false:重新安装app
}
我是拿bundleID 唤起原有APP 进行测试的,所以要事先在模拟器编译,确认有当前bundleID的项目,才能启动成功。
你也可以用 app 当作key, value 是绝对路径的.ipa、.app文件。
下一步我们来启动会话,成功后会出现检查器界面。
到这里简单的环境配置基本完成。
下面说说检查器导航栏按钮的功能。
基本操作已经介绍完了,下篇将进行 Appium 与 python 实现 iOS 模拟器自动化测试。
补充:
- Appium 自带的 WebDriverAgent 存在 bug,下载 FaceBook 的 WebDriverAgent 。编译后替换 Appium Desktop
/Applications/Appium.app/Contents/Resources/app/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent 目录文件。
# 终端下载 cd 到 桌面
cd Desktop
# 然后从 git 拉取项目
git clone https://github.com/facebook/WebDriverAgent
# 下载完成后进入文件编译
cd WebDriverAgent
# 运行初始化脚本
./Scripts/bootstrap.sh
编译后的 WebDriverAgent 拷贝起来,替换掉 /Applications/Appium.app/Contents/Resources/app/node_modules/appium/node_modules/appium-xcuitest-driver/WebDriverAgent 路径中 WebDriverAgent 文件就可以了。
这个 编译过的 WebDriverAgent,后面真机测试会用到,先保留一下。
-
模拟器或真机要开启 UI Automation。
Settings ---> Developer ---> Enable UI Automation