Accessibility Identifier not visible in Accessibility Inspector with iOS Simulator

痴心易碎 提交于 2019-12-03 13:09:36

You will never be able to (without changes from Apple) see this property in Accessibility Inspector, because it isn't really used for accessibility. That it is associated with accessibility is a misnomer, related to accessibility API's generic value in identifying elements for automated testing using UI Automation, because accessibility information is available cross process. To get this info you could cast UI elements to UIAElements and access the name property, and pass this to NSLog.

I have only recently started using accessibility features, but at least as of Xcode9.1b2, accessibility identifiers are visible within the Accessibility Inspector. See for example:

There is actually a way, and Chris Prince missed out on explaining how to get to it. You start off by bringing up the inspector.

The bar above basically focuses the inspector to whatever process you need to inspect. In our case it should be simulator.
Edit: as pointed out by Dallas, you have to click on the left half revealing the possible targets. Click on the Simulator to have the Inspector target it.

Something to note that it seems that simulators have their own information to show. Focusing on the simulator will automatically add in the identifier and show the proper accessibility information.

voila!

FCHTester Schmoe

Xcode is so flaky, sometimes the Accessibility Label or Identifier will not show in the Accessibility Inspector. When this happens I just

  1. Set the Label and/or Identifier
  2. Edit the display text under the Attribute Inspector, the value right under the Text selector. After doing a build I will change the value back.
  3. Or add a IBOutlet then delete it.

If you change just the Label or Identifier Xcode does not detect it.

Make sure you have XCode opened in the background (even though you are using Accessibility Inspector standalone app)

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!