Appium vs TTTAttribuedLabel

Hi All.
I have an iPhone app that has elements of TTTAttribuedLabel class. Which are fully invisible for the Appium inspector. Is there anything i can do to interact with those elements? I’m using Appium 1.3.3 with 2.1.0 java bindings, xCode 6.1.1 with iPhone6 iOS 8.1 emulator.

Hi. This should be an easy fix. Fork the project and make sure it implements an accessibility identifier or an accessibility label. Then instruments will be able to see the element and it’ll show up in appium.

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIAccessibilityIdentification_Protocol/index.html

So yes the implementing of the AccessibilityIdentification protocol didn’t work. This, however did http://stackoverflow.com/questions/27843986/xcode-uiautomation-cant-interact-with-tttattributedlabel/27940550#27940550

Nice. We should probably document isAccessibilityElement somewhere.