I have created an xCode project, the app runs fine. I have enabled the Accessibility Inspector in the simulator and can see my labels have been applied. The problem is not all of the labels can be found by Instruments.
I can do a logElementTree on the window and this shows my labels for staticText and elements but not for the images. Instead for images I see the file path, i.e. UIAImage: name:/var/mobile/Applications...
I can access images via their numeric index but I would rather use their labels.
Works: window.images()[1] Does not work: window.images()["Next"]
Why are my labels not showing up for images in Instruments but Accessibility Inspector can see them?