You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The class io.appium.java_client.internal.ElementMap uses a internal map to provide fast access to all entries. The value of ElementMap.WINDOWS is not reachable by getElementClass, becase the get call to this map does a toLowerCase on the key (ElementMap.java:82) and the value written is not transformed to lower keys (ElementMap.java:82 / ElementMap.java:40).
This might fix the issue described in #774, because the correct element should be instantiated.