We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0be00cd commit 2e69763Copy full SHA for 2e69763
src/main/java/io/appium/java_client/internal/ElementMap.java
@@ -37,7 +37,7 @@ public enum ElementMap {
37
IOS_XCUI_TEST(AutomationName.IOS_XCUI_TEST.toLowerCase(), IOSElement.class),
38
ANDROID_UI_AUTOMATOR(MobilePlatform.ANDROID.toLowerCase(), AndroidElement.class),
39
IOS_UI_AUTOMATION(MobilePlatform.IOS.toLowerCase(), IOSElement.class),
40
- WINDOWS(MobilePlatform.WINDOWS, WindowsElement.class);
+ WINDOWS(MobilePlatform.WINDOWS.toLowerCase(), WindowsElement.class);
41
42
43
private static final Map<String, ElementMap> mobileElementMap;
0 commit comments