未验证 提交 a5f16210 编写于 作者: V Valery Yatsynovich 提交者: GitHub

fix: Use lower case for Windows platform key in ElementMap (#1421)

上级 0be00cdb
......@@ -37,7 +37,7 @@ public enum ElementMap {
IOS_XCUI_TEST(AutomationName.IOS_XCUI_TEST.toLowerCase(), IOSElement.class),
ANDROID_UI_AUTOMATOR(MobilePlatform.ANDROID.toLowerCase(), AndroidElement.class),
IOS_UI_AUTOMATION(MobilePlatform.IOS.toLowerCase(), IOSElement.class),
WINDOWS(MobilePlatform.WINDOWS, WindowsElement.class);
WINDOWS(MobilePlatform.WINDOWS.toLowerCase(), WindowsElement.class);
private static final Map<String, ElementMap> mobileElementMap;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册