One more question... Say we have a number of child views which are uniquely named, and each child view has a number of input controls which are also uniquely named within their superview, but not necessarily unique across the other child views, will Appium allow one to target an input control relative to a specific parent view? In other words...
UIView (ID = undefined)
|
|_____UIView (ID = "V1")
| |______ UIView (ID = "C1")
| |______ UIView (ID = "C2")
|
|_____UIView (ID = "V2")
|______ UIView (ID = "C1") <-- I want to target this "C1"
|______ UIView (ID = "C2")
Keep in mind that I don't necessarily know how many other parent views who have a child named "C1" are on the display. I also don't know the position of "V2" as the app is dynamic and may appear before "V1". All I know is that I'm looking for a child named "C1" under a parent named "V2".