How to set id for iOS app elements?

Hi all,

How to set an id locator value to the elements in the iOS app using Xcode.Whats is the procedure to set id values is any particular information site to refer that?Please inform me …

you need to set “accessibilityIdentifier” for needed elements. for some elements it is easy to make in storyboard (as dev to show) for other you need to do it in code e.g.:

titleCell.accessibilityIdentifier = “titleCell”

1 Like