我在 UIAutomation/Instruments 中的第一个 Javascript
我想自动化测试我的 iPhone 应用程序,并且我为 UIAutomation 框架编写了一个示例 Javascript。我无法越过第一行,出现以下错误:
运行脚本时引发异常:SyntaxError:解析错误 1: UIALogger.logStart("开始测试");
设置有什么根本性的错误吗?我使用的是 Xcode 3.2.6,iOS 4.3。
非常感谢任何帮助。
谢谢
I would like to automate testing of my iPhone app and I wrote a sample Javascript for the UIAutomation framework. I can't go past the first line, I get the following error:
Exception raised while running script: SyntaxError: Parse error
1: UIALogger.logStart("Beginning test");
There is something fundamentally wrong with the setup? I am using Xcode 3.2.6, iOS 4.3.
Any help is greatly appreciated.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
1) 确保您已设置要运行的正确目标(应用程序)。
2) 确保您已设置正确的模拟器版本来运行您的目标(请参阅目标上的弹出窗口 > 编辑活动目标 > 选项 > 模拟器配置应设置为 4.3
1) Make sure you have set the right target (app) to run.
2) Make sure you have set right Simulator version to run your target (see under popup on your target > Edit active target > Options > Simulator Configuration should be set to 4.3
仅供参考,如果 javascript 代码中存在语法错误,也会显示解析错误。有一天,我被这样的事情束缚了好几个小时! :(
FYI, parse errors are also shown if there is a syntax error in the javascript code. I was tied down to something like this for hours one day! :(