Beispiel #1
0
 public FilterOptionProxy(AutomationElement element, SearchControlProxy searchControl)
 {
     this.Element       = element;
     this.searchControl = searchControl;
 }
Beispiel #2
0
 public ListViewItemProxy(AutomationElement element, SearchControlProxy sc)
 {
     this.Element       = element;
     this.SearchControl = sc;
 }
Beispiel #3
0
 public PaginationSelectorProxy(AutomationElement element, SearchControlProxy sc)
 {
     this.Element      = element;
     this.SeachControl = sc;
 }
Beispiel #4
0
 public SearchWindowProxy(AutomationElement element)
     : base(element.AssertClassName("SearchWindow"))
 {
     SearchControl = new SearchControlProxy(element.ChildById("searchControl"));
 }