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

发布于 2024-11-04 09:39:47 字数 62 浏览 1 评论 0原文

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

Hi i am learning UI-Automation on I phone, can any one tell me what reference should be used to select (-) or (+) buttons while editing a table.

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

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

发布评论

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

评论(2

旧城空念 2024-11-11 09:39:47

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

 tableView.editing=YES;

set the editing property of UITableView to true..

 tableView.editing=YES;
凶凌 2024-11-11 09:39:47

对于删除,这对我有用:

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

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

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

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

For Deleting, this works for me:

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

So I'd assume that for "+" you'd just need to tap button at index 0:

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

Now that you can use Instruments to record your actions that is probably the easiest way to get the correct syntax that will work for you.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文