如何在 Iphone UIAutomation 中编辑表格时选择 (-) 图标
您好,我正在手机上学习 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将 UITableView 的编辑属性设置为 true..
set the editing property of UITableView to true..
对于删除,这对我有用:
所以我假设对于“+”,您只需要点击索引 0 处的按钮:
现在您可以使用仪器来记录您的操作,这可能是获得正确结果的最简单方法适合您的语法。
For Deleting, this works for me:
So I'd assume that for "+" you'd just need to tap button at index 0:
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.