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