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