我正在尝试编写一些测试脚本来测试IOS设备的应用程序。我想在文本excel文件中报告每个错误。我编写了以下代码(在MonkyTalkIDE中使用JavaScript):
var fso = new ActiveXObject(“Scripting.FileSystemObject”);
var s = fso.CreateTextFile(“D:\\ test.txt”);
s.WriteLine( '你好');
S.CLOSE();
如果我将上面的代码嵌入到html文件中,它会按预期工作。有没有人有这个问题的解决方案,或者任何人都可以告诉我为什么它不能与MonkeyTalk结合使用?
答案 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
。