如何在iOS使用自动化UI测试

随着Apple在iOS 9中引入可以录制的UI Testing, 自动化UI测试在iOS开发中得到重视。 本文主要介绍如何引入自动化测试,以及各种方案的优缺点。希望大家在阅读后,有所收获。

截止iOS 9,自动化UI测试的方案大致分成三种:

  1. 使用最新的UI Testing
  2. 使用Instrument自带的automation
  3. 引入第三方框架

使用UI Testing

适用于:

iOS version Device Simulators
iOS 9.0+ iPhone, iPad iPhone, iPad

简单用法:

  1. File->New->Target: iOS UI Testing Bundle
  2. New File: UI Test Class

可以先录制一段试试,因为iOS UI Test基于accessibility,显示为中文的控件录制之后需手动修改文字。
官方教程 Apple UI Testing

优点:比较简单,新建UITest Target使用方便
缺点:录制不准确,不易维护

使用Instrument自带的automation

适用于:

iOS version Device Simulators
iOS 4.0+ iPhone, iPad iPhone, iPad

简单用法:

  1. Command+I或Product->Profile打开Instruments
  2. 选择automation

官方教程 Apple Automatic UI Testing
这个用的不多,就不多说了。

优点:利用Apple自带的UIAutomation框架,功能比较全
缺点:使用JS脚本测试,对于不会JS的。。。

引入第三方框架

自动化UI测试的第三方框架也有一些,这里就不一一介绍。
这里说一款Google的EarlGrey。

EarlGrey###

适用于:

iOS Version Devices Simulators
iOS 8.x iPhone, iPad iPhone, iPad
iOS 9.0 - 9.3 iPhone, iPad iPhone, iPad

简单用法:
GitHub上有详细的安装教程,这里就不多说了。
因为EarlGrey无法点击system permission dialogs,这里讲一下如何使用Apple自带的UIAutomation mock SystemAlert。

代码:


#import "SystemAlert.h"

#import 

@interface SystemAlert (ForMethodCompletionOnly)
+ (id)localTarget;
- (id)frontMostApp;
- (id)alert;
- (id)buttons;
- (void)tap;
@end

@implementation SystemAlert

+ (void)load {
    dlopen([@"/Developer/Library/PrivateFrameworks/UIAutomation.framework/UIAutomation" fileSystemRepresentation], RTLD_LOCAL);
}

- (void)tapLeftButton {
    id localTarget = [NSClassFromString(@"UIATarget") localTarget];
    id app = [localTarget frontMostApp];
    id alert = [app alert];
    id button = [[alert buttons] objectAtIndex:0];
    [button tap];
}

@end


谢谢阅读!

你可能感兴趣的:(如何在iOS使用自动化UI测试)