I am new to this. I use UI Automation to automate my application. Is there a way to identify an item based on a multiple identifier. there is currently a syntax below that only one identifier can identify.
AutomationElement okbtn = dialogbox.FindFirst (TreeScope.Children, new PropertyCondition (AutomationElement.NameProperty, "OK"));
I would like to highlight the name element of both NameProperty and ControlTypeProperty.
Please let me know if possible.
thanks
kumar source share