1

当我在执行自动化测试时尝试在我的应用程序中引用搜索栏时遇到了困难。如果我使用类似的东西:

UIATarget.localTarget().frontMostApp().mainWindow().searchBars() 

这似乎不是一个有效的 get 方法。是否有 UIAElements 的获取方法的主列表(例如 .buttons()、.views()、.listViews())或者是否有一般规则?UISearchBars 的正确获取方法是什么?

4

1 回答 1

1

参考在这里:http: //developer.apple.com/library/ios/#documentation/DeveloperTools/Reference/UIAutomationRef/_index.html#//apple_ref/doc/uid/TP40009771

UAISearchBar 继承自 UIATextFields,因此您可以找到方法“searchBars”。

于 2013-06-25T13:20:12.807 回答