UIAutomation UIButton onClick事件

时间:2012-01-24 08:16:22

标签: iphone uibutton ios-ui-automation

如何在iPhone的IOS Automation脚本中获取UIButton的onclick事件?

1 个答案:

答案 0 :(得分:1)

对于主窗口中的第一个按钮:

 UIATarget.localTarget().frontMostApp().mainWindow().buttons()[0].tap();

另请查看Apple的this document,了解运行测试脚本的所有步骤。