コード例 #1
0
 internal override AutomationElement FindFirst(AutomationElement parent, int timeout)
 {
     return(AutomationElementHelper.FindAll(parent, this.xpath, timeout).FirstOrDefault());
 }
コード例 #2
0
 internal override AutomationElement FindFirst(AutomationElement parent, int timeout)
 {
     return(AutomationElementHelper.FindFirst(parent, this.scope, this.GetCondition(), timeout));
 }
コード例 #3
0
 internal override IEnumerable <AutomationElement> FindAll(AutomationElement parent, int timeout)
 {
     return(AutomationElementHelper.FindAll(parent, this.xpath, timeout));
 }
コード例 #4
0
 internal override IEnumerable <AutomationElement> FindAll(AutomationElement parent, int timeout)
 {
     return(AutomationElementHelper.FindAll(parent, this.scope, this.GetCondition(), timeout));
 }