UIAutomation 第二个视图 ios

发布于 2024-12-09 14:41:57 字数 256 浏览 1 评论 0原文

您好,我正在尝试为我的应用程序使用 UIAutomation。我能够测试我的应用程序的第一页。现在我的应用程序是一个基于导航的应用程序,我测试了表格视图的编辑按钮。当我单击表格单元格时,应用程序将导航到不同的视图。如何测试这个视图?以下是我的几个问题:

  1. 如何自动测试多个视图?
  2. 我如何访问第二个视图中的元素?
  3. 如何截取显示错误的页面???这可能吗?
  4. 我也可以检查触摸手势吗?

提前致谢。

Hi, I'm trying to use UIAutomation for my application. I am able to test the first page of my application. Now mine is a navigation based application, I tested the edit buttons for the tableview. When I click the tablecell the application navigates to different view. How to test this view?? Here are the few questions I have:

  1. How to automate testing for multiple views??
  2. How can i get access to the elements in the second view??
  3. How to make a screenshot of the page showing error??? Is this possible?
  4. Can I check for touch gestures also??

Thanks in advance.

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

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

发布评论

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

评论(1

一绘本一梦想 2024-12-16 14:41:57
  1. 新视图刚刚添加到堆栈中,因此现在可以从 mainWindow().elements (或其他方法,如 tableViews() 等)使用它。在推送新视图之前和之后执行一些 target.logElementTree() 调用,您应该会看到更改。
  2. 通过 mainWindow() 中的各种方法访问它,然后通过父视图上的类似方法访问它的子视图。
  3. 要截取屏幕截图,请使用 UIATarget.localTarget().captureScreenWithName("");
  4. 您可以进行捏合、拖动和轻弹操作 - 请参阅 仪器用户指南 - 特别是内置仪器/UI 自动化章节以获取更多信息。
  1. The new view just gets added to the stack, so it's now available from your mainWindow().elements (or other methods like tableViews(), etc). Do some target.logElementTree() calls before and after the new view is pushed and you should see the changes.
  2. Access it through the various methods from the mainWindow(), then access it's children through similar methods on the parent view.
  3. To take a screenshot use UIATarget.localTarget().captureScreenWithName("");
  4. You can do pinches, drags and flicks - see the Instruments Users Guide - specifically the Built-in Instruments / UI Automation chapter for more info.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文