我正在尝试如何使用 UIAutomation 框架使用名称来识别表格视图中的单元格。这是仪器编辑器视图的屏幕截图。
我尝试了以下方法,但还没有成功。什么是正确或好的方法。一般来说,withName 可以与任何 UIAElement 一起使用吗?
- mainWindow().withName("11:00 AM")
- target.frontMostApp().mainWindow().tableViews()[0].cells() 1 .tableViews()[0].cells()["11:00 am"]
请注意,使用硬编码位置标识元素是有效的。像下面
target.frontMostApp().mainWindow().tableViews()[0].cells().tableViews()[0].cells()[2]
苹果文档中提到了 withName - http://developer.apple.com/library/ios/#documentation/ToolsLanguages/Reference/UIAElementClassReference/UIAElement/UIAElement.html#//apple_ref/javascript/cl/UIAElement#withName