我正在使用 Xcode 4.0.1 和 Instruments 尝试实现一些 UIAutomation 测试。
截至目前,我正在尝试确定是否mainWindow = app.mainWindow();
启用了 MainWindow ( ) 上的按钮。
这是一个在 iPad II 上运行的应用程序,现在我感觉不到爱。
有人可以帮忙吗?
这是我尝试使用的语法;这看起来正确吗?
var title="Checking that Sign-In button is disabled";
try {
if (mainWindow.buttons()["Sign In"].isEnabled())
UIALogger.logPass("Try: " + title + " has passed.");
}
catch (error) {
UIALogger.logError(error);
target.logElementTree();
UIALogger.logFail("Try: " + title + " has failed.");
}