tuneup.js为test()方法报告“找不到变量”

时间:2013-03-08 23:14:59

标签: xcode instruments ios-ui-automation

enter code here因为我无法使用4.6版本的工具正常通过/失败日志记录,所以我正在尝试使用tuneup.js库,但每当我遇到以下错误时我尝试运行测试:

Can't find variable: test

以下是代码:

//We want to use the tuneup library to add extra capabilities
#import <tuneup_js/tuneup.js>
#import <tuneup_js/test.js>

var target = UIATarget.localTarget();

var target = UIATarget.localTarget();
var app = UIATarget.localTarget().frontMostApp();

test("Test1", function(target, app) {

//Do UI automation stuff

var titleDisplayed = tableView.cells()[0].name();
var StoryName = "My Dogs!";

UIALogger.logMessage("My Story Title: " + titleDisplayed);
UIALogger.logMessage("Innocuous Message-1.");


assertEquals(titleDisplayed, StoryName); 

}); // <------Error points to this line!

//End test

知道我做错了什么吗? tuneup.js库位于一个名为tuneup_js的文件夹中,该文件夹位于包含我的测试脚本(Instruments跟踪文件)的目录的根目录中,并且在启动时我没有收到任何导入错误。

1 个答案:

答案 0 :(得分:1)

问题是Instruments无法找到* tuneup_js *库,因此找不到 test 函数。您需要在引号中添加导入,而不需要添加{{1}因为tuneup_js/test.js包含了所需的所有类

tuneup_js/tuneup.js