使用 UI 自动化工具删除单元格的语法是什么?

发布于 2024-12-02 10:09:08 字数 123 浏览 2 评论 0原文

我正在编写一个 UI 自动化脚本来测试我的应用程序中包含许多单元格的页面。

我可以选择编辑和保存页面。单击“编辑”后,将出现一个删除单元格的选项。我想让我的脚本此时删除或添加一个单元格。我怎样才能让脚本来做到这一点?

I am working on a UI Automation script to test a page in my application that contains many cells.

I have an option to edit and save the page. On clicking "edit" an option will appear to delete a cell. I would like to make my script delete or add a cell at this point. How can I get the script to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

何以心动 2024-12-09 10:09:08

使用元素索引:

myCell.switches().[0].tap();
myCell.buttons().[0].tap();

或使用谓词:

myCell.switches().firstWithPredicate("name contains[c] 'Delete'").tap();
myCell.buttons().firstWithPredicate("name contains[c] 'Confirm'").tap();

With element index :

myCell.switches().[0].tap();
myCell.buttons().[0].tap();

Or with predicate :

myCell.switches().firstWithPredicate("name contains[c] 'Delete'").tap();
myCell.buttons().firstWithPredicate("name contains[c] 'Confirm'").tap();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文