自动化测试iOS精品文章-单元测试iOS管理工具 +Xcode相关+第三方框架+流程+配置+上架上线

iOS UI Test总结

2016-05-28  本文已影响4193人  栗子烤肉

添加UI Test target

1.如果是新建项目,在添加新项目时,勾选UI Test,即可添加UI Test。

添加新项目

如果是为已有的项目添加UI Test,选择File->New->Target 新建

已有的项目

2.选择iOS UI Testing Bundle

iOS UI Testing Bundle

3.为UI Test命名,并选择依赖的target

配置

添加UI Test target后,会自动生成CalcUITests文件夹,其中,有CalcUITests.m和Info.plist两个文件。

文件目录

录制UI Test

1.如果想使用UI Test的录制功能,则UI Test target必须配置相应的Build Phase。

Build Phase

2.使用录制按钮开始录制UI Test,此时模拟器会自动启动,可以点击屏幕进行操作。

录制按钮

3.在录制的过程中,Xcode会根据用户交互,自动生成代码。

4.再次点击录制按钮结束录制。

生成的代码如下:
<pre><code>
XCUIApplication *app = [[XCUIApplication alloc] init];

[app.buttons[@"8"] tap];

[app.buttons[@"+"] tap];

[app.buttons[@"5"] tap];

[app.buttons[@"="] tap];

</pre></code>

具体操作,如下图:(PS:因为是gif格式,有几帧图片丢失,所以8+5=13的过程不是特别连贯)

录制UI Test.gif

UI Test

录制好UI Test,点击该图标进行UI Test。此时,模拟器自动启动,并自动运行UI Test。

图标

具体操作,如下图:

UI Test.gif

在真机上进行UI Test的效果与在模拟器上的效果一致。

遇到的问题

1.Please select a scheme where “iOS_Calc” is the executable。

解决方案:target一定要选择关联的target,而不是UI Test的target。

target

2.编译后报错:Incomplete universal character name

由于是使用公司项目进行UI Test,项目中很多UI 元素都没有tag,生成的脚本都是以元素的title或其他属性来区分。
生成的代码如下:
<pre><code>
XCUIApplication *app = [[XCUIApplication alloc] init];

[app.tabBars.buttons[@"\U60a3\U8005"] tap];



XCUIElementQuery *tablesQuery2 = app.tables;

XCUIElementQuery *tablesQuery = tablesQuery2;

[tablesQuery.buttons[@"\U79d1\U5ba4\U5de5\U5177"] tap];

[tablesQuery.staticTexts[@"\U65e5\U7a0b"] tap];



XCUIElement *reminderoverviewviewNavigationBar = 

app.navigationBars[@"ReminderOverviewView"];

[reminderoverviewviewNavigationBar.buttons[@"\U6dfb\U52a0"] tap];

[tablesQuery.textFields[@"\U6807\U9898"] tap];

[[[tablesQuery2 childrenMatchingType:XCUIElementTypeCell] elementBoundByIndex:0] 

childrenMatchingType:XCUIElementTypeTextField].element;

[app.buttons[@"Done"] tap];

[app typeText:@"\n"];

</pre></code>

解决方案:这其实是Xcode的一个bug,需要手动将\U替换为\u即可。

3.编译后报错:missing '[' at start of message send expression uitest

解决方案:在录制UI Test的过程中,如果涉及到键盘输入事件,Xcode生成的代码不完整,导致编译不过。此时,需手动修改代码。

4.闪退

Xcode在进行UI Test过程中经常性闪退,希望苹果能尽快解决这些bug,提高UI Test的用户体验。

总结

demo下载地址:

https://developer.apple.com/library/mac/samplecode/UnitTests/Introduction/Intro.html#//apple_ref/doc/uid/DTS40011742-Intro-DontLinkElementID_2

上一篇下一篇

猜你喜欢

热点阅读