where exactly accessibility identifier be display in xml?as i am very new..how can we find accessibility id using appium inspector
created
Mar '16
last reply
Oct '17
- 8
replies
- 1.5k
views
- 5
users
where exactly accessibility identifier be display in xml?as i am very new..how can we find accessibility id using appium inspector
On Android devices, the accessibility ID is the content descriptor field (abbreviated something like "content-desc"). This is the field Appium looks at when you search for something using accessibility IDs.
I haven't touched iOS in a while, so I don't remember clearly what the name of the field is on iOS, but it's called something like "accessibility label".
I'm using iOS and having issues with Xpath(and I see that many recommended accessibility_ID). I also can not see this field in the inspector using iOS. This is a simple text field in inspector:
name: email address
type: UIATextField
value: Email address
label: email address
enabled: true
visible: false
valid: true
location: {52.5, 122}
size: {280, 26}
xpath: //UIAApplication[1]/UIAWindow[1]/UIATextField[4]/UIATextField[1]
Which of these fields would be the Accessibility_Id...
Thanks,
Kate
I know this thread is a year old, but I wanted to give details for anyone reading this going forward.
In iOS the accessibility identifier is the test id or automation_id. This value is not shown to the end user and it is also not localized.
The ID is not the label, which the end user does encounter the label and the label is localized.