Xcode 7记录ui按钮不会出现

时间:2016-04-21 19:47:21

标签: ios xcode xctest

我创建了一个ui测试类:

import Foundation
import XCTest
@testable import TestProject

@available(iOS 9.0, *)
class ChangeWishListUITests: XCTestCase {

    func testExample() {
        // Use recording to get started writing UI tests.
        // Use XCTAssert and related functions to verify your tests produce the correct results.


    }

}

使用ios 9.3在iphone 6模拟器上运行app: enter image description here

但是,记录按钮,就像在本教程中一样: https://developer.apple.com/library/ios/documentation/ToolsLanguages/Conceptual/Xcode_Overview/RecordingUITests.html#//apple_ref/doc/uid/TP40010215-CH75-SW1

没有出现。

enter image description here

3 个答案:

答案 0 :(得分:1)

  1. 您的光标必须位于您要实现的方法内(因为Xcode会生成光标位置的代码)
  2. 如果这没有帮助:

    1. 当您向现有项目添加UI测试时,Xcode似乎不稳定。在某些情况下,以下顺序帮助了我:

      • 清理项目
      • 重启Xcode
      • 重建项目
      • 在测试方法内单击以设置光标
    2. 有时我不得不这样做两次。

      1. 您的模拟器必须至少运行iOS 9.0

答案 1 :(得分:0)

隐藏调试区域......

通过同时按“shift + command + y”在键盘上切换调试编辑器

答案 2 :(得分:0)

就我而言,我忘记在项目中添加UI测试目标并将测试文件分配给该目标