Can we see Accessibility Identifiers alone of automation elements in swift which are not accessibility Elements

I want to expose few elements for accessibility alone and other for automation alone. But I can only accessibility elements in Accessibility Inspector but can't see Automation Elements

 self.view.accessibilityElements = [loginButton as Any,
                                                          registerButton as Any,
                                                          closeButton as Any]
self.view.automationElements = [claimLabel as Any,
                                                           loginButton as Any,
                                                           registerButton as Any,
                                                           intoductionImage as Any,
                                                           closeButton as Any])

Hi! By default, the Accessibility Inspector only lets you inspect accessibility elements. If an element is not accessible, but has been added to automationElements, the Accessibility Inspector will not reveal that element because it is ignored by accessibility However, you can view ignored elements by going to the Accessibility Inspector menu bar -> Inspection > Show Ignored Elements.

Can we see Accessibility Identifiers alone of automation elements in swift which are not accessibility Elements
 
 
Q