如何在 Iphone UIAutomation 中编辑表格时选择 (-) 图标

Posted

技术标签:

【中文标题】如何在 Iphone UIAutomation 中编辑表格时选择 (-) 图标【英文标题】:How to select (-) icons while editing a tabel, in Iphone UIAutomation 【发布时间】:2011-05-03 11:22:04 【问题描述】:

您好,我正在手机上学习 UI 自动化,谁能告诉我在编辑表格时应该使用什么参考来选择 (-) 或 (+) 按钮。

【问题讨论】:

【参考方案1】:

将 UITableView 的编辑属性设置为 true..

 tableView.editing=YES;

【讨论】:

【参考方案2】:

对于删除,这对我有用:

    tableView.cells()[cellName].switches()[0].setValue(true);
    tableView.cells()[cellName].buttons()[0].tap();

所以我假设对于“+”,您只需要点击索引 0 处的按钮:

    tableView.cells()[cellName].buttons()[0].tap();

现在您可以使用 Instruments 来记录您的操作,这可能是获得适合您的正确语法的最简单方法。

【讨论】:

以上是关于如何在 Iphone UIAutomation 中编辑表格时选择 (-) 图标的主要内容,如果未能解决你的问题,请参考以下文章

如何让 UIAutomation、模拟器和 Xcode 调试器同时运行?

iPhone UIAutomation 按钮点击不会触发

在 iPhone 应用程序中使用 UIAutomation 在主视图上搜索元素真的很慢

iPhone UIAutomation:找不到表格视图的子元素

iOS/UIAutomation:如何将 isVisible() 用于第二个未标记工具栏中的按钮?

使用 UIAutomation 获取设备模型?