Xcode 7 - new feature UITesting - no recording button !

I'm trying to get the User Interface Testing working with my appplication.


I created a UI Test Case Class, reproduced the code shown in What's new in Xcode presentation.


And somehow, I cannot find the recording button, in order to record the different actions I want to test and approve.


Can you please let me know how to get this to work, I'm bashing my head over this for few hours.


Thanks

Did you add an app target for 'Cocoa Touch UI Testing'? If so, open the '<AppName>_UI_Tests.swift' file, and click inside the 'testExample' method. The record button should then be visible and clickable.

I am also having this problem... Just to clarify the recod button is not greyed out. It is missing entirely.

Running XCode 7.1.1 on OS X 10.11.1.

Back again. I figured out the problem in my case. I didn't have my deployment target specifically set to iOS 9. Even though my current scheme was aimed at 9 (I was using a 6S sim) the record button would only appear after I changed my minimum deployment target to 9+.

That sounds weird to me. Can you please file a bug report?

Any news on this? Because I also have this problem but my app was already set to the newest iOS version so I *still* have this problem.

Steps to fix:

1. File->New->Target...

2. Pick Test.

3. Choose UI Testing Bundle.

4. Click Next.

5. Click Finish.


Do not change anything it shows you (i.e. do not change the name of the test bundle). Record button will show up after that. If you try adding tests in any other way, or if you do it the above way but change the name, you will get your record button taken away.

Xcode 7 - new feature UITesting - no recording button !
 
 
Q