Skip to content

Commit 3c4bbe9

Browse files
authored
chore!: drop support of deprecated Selendroid driver (#1553)
BREAKING CHANGE: remove `SELENDROID` item from `AutomationName` interface and corresponding entry in `ElementMap` enum
1 parent f5d12a5 commit 3c4bbe9

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/main/java/io/appium/java_client/internal/ElementMap.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434

3535
public enum ElementMap {
3636
ANDROID_UIAUTOMATOR2(AutomationName.ANDROID_UIAUTOMATOR2.toLowerCase(), AndroidElement.class),
37-
SELENDROID(AutomationName.SELENDROID.toLowerCase(), AndroidElement.class),
3837
IOS_XCUI_TEST(AutomationName.IOS_XCUI_TEST.toLowerCase(), IOSElement.class),
3938
ANDROID_UI_AUTOMATOR(MobilePlatform.ANDROID.toLowerCase(), AndroidElement.class),
4039
IOS_UI_AUTOMATION(MobilePlatform.IOS.toLowerCase(), IOSElement.class),

src/main/java/io/appium/java_client/remote/AutomationName.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,6 @@ public interface AutomationName {
2020
// Officially supported drivers
2121
@Deprecated
2222
String APPIUM = "Appium";
23-
@Deprecated
24-
String SELENDROID = "Selendroid";
2523
// https://github.com/appium/appium-xcuitest-driver
2624
String IOS_XCUI_TEST = "XCuiTest";
2725
// https://github.com/appium/appium-uiautomator2-driver

0 commit comments

Comments
 (0)