Skip to content

Commit 60bf165

Browse files
authored
Merge pull request #60 from healenium/dev
Dev
2 parents d2abcd6 + 007c0f5 commit 60bf165

File tree

2 files changed

+4
-9
lines changed

2 files changed

+4
-9
lines changed

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
<modelVersion>4.0.0</modelVersion>
1111
<groupId>com.epam.healenium</groupId>
1212
<artifactId>healenium-appium</artifactId>
13-
<version>1.5.8</version>
13+
<version>1.5.10</version>
1414
<packaging>jar</packaging>
1515
<name>healenium-appium</name>
1616
<description>healenium appium client</description>
@@ -55,7 +55,7 @@
5555

5656

5757
<properties>
58-
<healenium.version>3.5.0</healenium.version>
58+
<healenium.version>3.5.3</healenium.version>
5959
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
6060
<typesafe.version>1.3.4</typesafe.version>
6161
<commonslang3.version>3.11</commonslang3.version>
@@ -64,7 +64,7 @@
6464
<lombok.version>1.18.20</lombok.version>
6565
<javassist.version>3.26.0-GA</javassist.version>
6666
<junit.version>5.7.1</junit.version>
67-
<appium.version>8.3.0</appium.version>
67+
<appium.version>9.2.3</appium.version>
6868
</properties>
6969

7070
<profiles>
@@ -192,7 +192,7 @@
192192
<dependency>
193193
<groupId>org.apache.maven</groupId>
194194
<artifactId>maven-plugin-api</artifactId>
195-
<version>3.8.1</version>
195+
<version>3.9.7</version>
196196
</dependency>
197197
<dependency>
198198
<groupId>com.typesafe</groupId>

src/main/java/com/epam/healenium/appium/handlers/proxy/MobileBaseHandler.java

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
package com.epam.healenium.appium.handlers.proxy;
22

33
import com.google.common.collect.ImmutableMap;
4-
import io.appium.java_client.MobileBy;
54
import org.openqa.selenium.By;
65

76
import java.util.Map;
@@ -25,9 +24,5 @@ public interface MobileBaseHandler {
2524
.put("findElementsByCssSelector", By::cssSelector)
2625
.put("findElementById", By::id)
2726
.put("findElementsById", By::id)
28-
.put("findElementByAccessibilityId", MobileBy::AccessibilityId)
29-
.put("findElementsByAccessibilityId", MobileBy::AccessibilityId)
30-
.put("findElementByXPath", MobileBy::xpath)
31-
.put("findElementsByXPath", MobileBy::xpath)
3227
.build();
3328
}

0 commit comments

Comments
 (0)