Skip to content

Commit 3605a75

Browse files
committed
merge appium#174 from TikhomirovSergey
2 parents 53d12eb + 2dc1dd7 commit 3605a75

1 file changed

Lines changed: 22 additions & 1 deletion

File tree

README.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,26 @@ Depends upon the Selenium Java client library, available [here](http://docs.sele
1515
</dependency>
1616
```
1717

18+
It currently depends on selenium-java 2.43.1. If it is necessary to use another version of Selenium then you can configure pom.xml as follows:
19+
20+
```
21+
<dependency>
22+
<groupId>io.appium</groupId>
23+
<artifactId>java-client</artifactId>
24+
<version>2.2.0</version>
25+
<exclusions>
26+
<groupId>org.seleniumhq.selenium</groupId>
27+
<artifactId>selenium-java</artifactId>
28+
</exclusions>
29+
</dependency>
30+
31+
<dependency>
32+
<groupId>org.seleniumhq.selenium</groupId>
33+
<artifactId>selenium-java</artifactId>
34+
<version>${selenium.version.you.require}</version>
35+
</dependency>
36+
```
37+
1838
Javadocs: http://appium.github.io/java-client/
1939

2040
###Structure###
@@ -71,11 +91,12 @@ Locators:
7191
- findElementsByAndroidUIAutomator()
7292

7393
##Changelog##
94+
7495
*2.2.0*
7596
- Added new TouchAction methods for LongPress, on an element, at x,y coordinates, or at an offset from within an element
7697
- SwipeElementDirection changed. Read the documentation, it's now smarter about how/where to swipe
7798
- Added APPIUM_VERSION MobileCapabilityType
78-
- `sendKeyEvent()` moved from AppiumDriver to IOSDriver
99+
- `sendKeyEvent()` moved from AppiumDriver to AndroidDriver
79100
- `linkText` and `partialLinkText` locators added
80101
- setValue() moved from MobileElement to AndroidElement
81102
- Fixed Selendroid PageAnnotations

0 commit comments

Comments
 (0)