ios - 在 XCode 中进行 UI 测试期间无法访问自定义 View

标签 ios xcode swift xcode-ui-testing

在我的应用程序中,有一个标签包含在一个简单的 View 中。 该 View 有一个点击识别器,它将触发一个功能(“为什么不使用按钮?”你可能会问......好吧,我们不得不执行一些时髦的动画,这是我们最好的布局)。问题是我无法访问此 View 来模拟点击它。 我可以使用 app.staticText["Enter name..."] 访问标签,但如果我点击它(希望传播到父 View )。 记录我点击标签的 session 将产生 app.staticText["Enter name..."] 命令,但回放时会产生相同的错误。

我已经尝试在 Storyboard 中为该 View 激活辅助功能平面并为其提供一个 ID,以便使用以下命令获取它:

app.windows.elementMatchingType(.Any, identifier: "MyView")

但是一旦这个标志被选中并且我运行我的测试,应用程序就会进入一种循环循环,一遍又一遍地显示这条消息:

Find: Elements matching predicate '"MyView" IN identifiers'

此 View 不在表内,而是在主视图中。我怎样才能访问它?

编辑 1: 这是 app.DebugDescription() 的输出(感谢@Che 的建议):

    Element subtree:
 →Application 0x14e7e300: {{0.0, 0.0}, {320.0, 568.0}}, label: 'MyApp'
    Window 0x14dbfef0: Main Window, {{0.0, 0.0}, {320.0, 568.0}}
      Other 0x14dc0a40: traits: 8589934592, {{0.0, 0.0}, {320.0, 568.0}}
        Other 0x14dc0ff0: traits: 8589934592
        Other 0x14eb4f50: traits: 8589934592, {{0.0, 0.0}, {320.0, 568.0}}
          Other 0x14eb53d0: traits: 8589934592
          Button 0x14eb5940: traits: 8589934593, {{12.0, 26.0}, {30.0, 30.0}}, label: 'home hamburger'
            Image 0x14eb5f00: traits: 8589934596, {{16.0, 30.0}, {22.0, 22.0}}, identifier: 'home_hamburger'
          Other 0x14eb64c0: traits: 8589934592, {{0.0, 109.0}, {320.0, 459.0}}
          Other 0x14eb6a20: traits: 8589934592, {{16.0, 167.0}, {288.0, 84.0}}
          Image 0x14eb6f80: traits: 8589934596, {{59.0, 184.0}, {201.0, 50.0}}, identifier: 'main_logo'
          Other 0x14eb4850: traits: 8589934592, {{16.0, 254.0}, {288.0, 60.0}}
            StaticText 0x14eb79e0: traits: 8589934656, {{57.0, 264.0}, {160.0, 40.0}}, label: 'Enter name...'
            Image 0x14eb7f90: traits: 8589934596, {{31.0, 275.0}, {18.0, 18.0}}, identifier: 'SearchIcon'
            Other 0x14eb8530: traits: 8589934592, {{57.0, 274.0}, {2.0, 20.0}}
          Other 0x14eb8ac0: traits: 8589934592, {{16.0, 262.0}, {288.0, 44.0}}
            Image 0x14eb9060: traits: 8589934596, {{16.0, 262.0}, {288.0, 44.0}}
            SearchField 0x14eb9610: traits: 146029151232, {{24.0, 270.0}, {272.0, 28.0}}
          Other 0x14eb9bc0: traits: 8589934592
        Other 0x14eba170: traits: 8589934592
    Window 0x14eba730: {{0.0, 0.0}, {320.0, 568.0}}
      StatusBar 0x14ebaca0: {{0.0, 0.0}, {320.0, 20.0}}
        Other 0x14ebb220: {{0.0, 0.0}, {320.0, 20.0}}
        Other 0x14ebb7b0: {{0.0, 0.0}, {320.0, 20.0}}
          Other 0x14ebbd50: traits: 8388608, {{6.0, 0.0}, {35.0, 20.0}}, label: '3 of 5 bars, signal strength'
          Other 0x14ebc330: traits: 8388608, {{44.0, 0.0}, {73.0, 20.0}}, label: 'vodafone UK network'
          Other 0x14ebc8c0: traits: 8388608, {{122.0, 0.0}, {13.0, 20.0}}, label: '3 of 3 Wi-Fi bars', value: SSID
          Other 0x14ebce50: traits: 8389120, {{146.0, 0.0}, {32.0, 20.0}}, label: '11:34'
          Other 0x14ebd3d0: traits: 8388608, {{282.0, 0.0}, {33.0, 20.0}}, label: '100% battery power, Charging'
Path to element:
 →Application 0x14e7e300: {{0.0, 0.0}, {320.0, 568.0}}, label: 'MyApp'
Query chain:
 →Find: Target Application 0x14ea2c00
  Output: {
    Application 0x14e7e300: {{0.0, 0.0}, {320.0, 568.0}}, label: 'MyApp'
  }

最佳答案

您是否有权访问应用中的其他元素?你能成功点击smth吗? 您可以通过

查看您的应用层次结构
let app = XCUIApplication()
print(app.debugDescription)

并尝试了解您的 View 在哪里以及它是什么元素类型(例如,它可以是 .otherElement :))

关于ios - 在 XCode 中进行 UI 测试期间无法访问自定义 View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34288686/

相关文章:

javascript - iPad HTML 网页问题

javascript - 如何使用适用于 iOS 的 phonegap 插件将数组作为参数传递给函数

ios - 如何将 UILabel 正好放在 UITableView 下方?

ios - 快速从 art.scnassets 中的文件夹加载 3D 模型

Xcode:复制 header :公共(public)、私有(private)、项目?

ios - Swift - UIDatePicker 限制选择天数

ios - 如何为 UIImageView 释放内存(Swift)

iphone - Xcode 不断生成开发者证书(无 key )?

arrays - 从 Swift 字典中删除 AnyObject

swift - 在 for 循环中的 Mapbox 中添加自定义标记