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