2

While trying to do UI recording for my UI tests, the app crashed after 1 event that was not recorded. Looking into the crash report, I found this error: UNCAUGHT EXCEPTION (NSInternalInconsistencyException): ancestorFinder is not being processed by childNodeFinders

Anyone also getting this and maybe someone knows a fix for this?

SalmonKiller
  • 2,183
  • 4
  • 27
  • 56

3 Answers3

3

At the moment, this seems a bug related to the absence of accessibility identifier on the item used to generate the event. If your UI is created using the Interface Builder, Andy's answer is certainly relevant.

If, like me, your are creating your UI object programmatically, you can set a value to the accessibilityIdentifier property of your UI element (e.g. a UIButton).

Community
  • 1
  • 1
Johann
  • 146
  • 9
0

Unfortunately that's just life with beta software, did you try reinstalling Xcode 7 beta 4.

If it still doesn't work, might be a beta thing.

Solution

Look forward to Xcode 7 beta 5

Community
  • 1
  • 1
MrHaze
  • 3,786
  • 3
  • 26
  • 47
0

This is a bug that Apple are aware of but require more details to debug it. Please see this link for info: https://forums.developer.apple.com/thread/10623

Charlie S
  • 4,366
  • 6
  • 59
  • 97