如何使用Xcode UI Automation测试在警报文本字段中输入文本

时间:2015-04-25 14:50:17

标签: ios xcode testing uialertview ios-ui-automation

这个问题真让我烦恼。阅读了官方文档,Jonathan Penn的书以及我能找到的所有在线教程。我已经构建了一个非常简单的应用程序来学习UI测试,但是我在第一步就感到难过。它是一个待办事项列表应用程序。我单击UIBarButtonItem按钮,显示一个带有UITextField和两个按钮的对话框,OK和Cancel。这是IBAction。

@IBAction func showDialog(sender: UIBarButtonItem) {
    println("showDialog")
    var inputTextField: UITextField?
    var alert:UIAlertController
    alert = UIAlertController(title: "New Item", message: "Type item below", preferredStyle: UIAlertControllerStyle.Alert)
    alert.addTextFieldWithConfigurationHandler({(textField: UITextField!) in
        textField.placeholder = "Item name"  // need to choose correct keyboard and capitalise first letter of each word.
        inputTextField = textField
    })
    alert.addAction(UIAlertAction(title: "OK", style: UIAlertActionStyle.Default, handler: { (action) -> Void in
        if let itemName = inputTextField?.text {
            println(itemName)
            self.items.append(itemName)
            self.tableView.reloadData()
        }
    }))
    alert.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.Cancel, handler: nil))
    self.presentViewController(alert, animated: true, completion: nil)
}

我尝试通过录制然后添加警报处理程序来编写UI自动化测试,但它不会起作用。这是我的测试脚本。

var target = UIATarget.localTarget();

UIALogger.logWarning('script started');

target.frontMostApp().navigationBar().rightButton().tap();

UIATarget.onAlert = function onAlert(alert) {
    var title = alert.name();
    UIALogger.logWarning("Alert with title ’" + title + "’ encountered!");
    target.frontMostApp().keyboard().typeString("Cheese");
    alert.buttons()["OK"].tap();
    return true;
}

我做错了什么?

1 个答案:

答案 0 :(得分:0)

经过多次搜索,我找到了答案。如果我们想要与警报进行交互,onAlert函数只返回true,如果我们只是想解雇它,则返回false

var target = UIATarget.localTarget();
var app = target.frontMostApp();
var window = app.mainWindow();
window.navigationBar().rightButton().tap();

UIATarget.onAlert = function() {
    return true;
}

app.keyboard().typeString("Cheese");
app.alert().buttons()["OK"].tap();