Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在编写一个 UI 自动化脚本来测试我的应用程序中包含许多单元格的页面。
我可以选择编辑和保存页面。单击“编辑”时,将出现一个删除单元格的选项。此时我想让我的脚本删除或添加一个单元格。我怎样才能让脚本做到这一点?
使用元素索引:
myCell.switches().[0].tap(); myCell.buttons().[0].tap();
或使用谓词:
myCell.switches().firstWithPredicate("name contains[c] 'Delete'").tap(); myCell.buttons().firstWithPredicate("name contains[c] 'Confirm'").tap();