public UIItemList(List <AutomationElement> collection, UIItemFactory factory, ActionListener actionListener) { foreach (AutomationElement element in collection) { Add((T)factory.Create(element, actionListener)); } }
public static T GetParent <T>(this IUIItem thisItem) where T : IUIItem { var parent = TreeWalker.ControlViewWalker.GetParent(thisItem.AutomationElement); var uiItem = ItemFactory.Create(parent, thisItem.ActionListener); return((T)UIItemProxyFactory.Create(uiItem, uiItem.ActionListener)); }
public virtual IUIItem Get(SearchCriteria searchCriteria, ActionListener actionListener, UIItemFactory factory) { List <AutomationElement> automationElements = searchCriteria.Filter(list); if (automationElements.Count == 0) { return(null); } return(factory.Create(automationElements[0], actionListener)); }
public UIItemCollection(IEnumerable automationElements, UIItemFactory uiItemFactory, ActionListener actionListener) { foreach (AutomationElement automationElement in automationElements) { IUIItem uiItem = uiItemFactory.Create(automationElement, actionListener); if (uiItem != null) { Add(uiItem); } } }