示例#1
0
 public static UIObject ByNameOrId(string nameOrId, bool shouldWait)
 {
     return(ElementCache.TryGetObjectByNameOrId(nameOrId, shouldWait));
 }
示例#2
0
 public static UIObject ByClassName(string className, bool shouldWait)
 {
     return(ElementCache.TryGetObjectByClassName(className, shouldWait));
 }
示例#3
0
 public static UIObject ById(string id, bool shouldWait)
 {
     return(ElementCache.TryGetObjectById(id, shouldWait));
 }