MonkeyTalk错误报告到.txt / excel文件

时间:2013-02-14 12:09:43

标签: ios testing automated-tests monkeytalk

我正在尝试编写一些测试脚本来测试IOS设备的应用程序。我想在文本excel文件中报告每个错误。我编写了以下代码(在MonkyTalkIDE中使用JavaScript):

  

var fso = new ActiveXObject(“Scripting.FileSystemObject”);
     var s = fso.CreateTextFile(“D:\\ test.txt”);
     s.WriteLine( '你好');
     S.CLOSE();

如果我将上面的代码嵌入到html文件中,它会按预期工作。有没有人有这个问题的解决方案,或者任何人都可以告诉我为什么它不能与MonkeyTalk结合使用?

1 个答案:

答案 0 :(得分:1)

此代码在MonkeyTalk中不起作用,因为它需要ActiveXTalk,而MonkeyTalk不支持它 - ActiveX是特定于Internet Explorer的。

但是,如果您想要自定义verify消息,可以这样:

this.app.view("monkeyid").verify("expected", "property", "custom message"); --JavaScript
View monkeyid Verify expected property "custom message" --MonkeyTalk

默认属性为value