You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+7-2Lines changed: 7 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,7 +11,7 @@ Depends upon the Selenium Java client library, available [here](http://docs.sele
11
11
<dependency>
12
12
<groupId>io.appium</groupId>
13
13
<artifactId>java-client</artifactId>
14
-
<version>3.0.0</version>
14
+
<version>3.1.0</version>
15
15
</dependency>
16
16
```
17
17
@@ -21,7 +21,7 @@ It currently depends on selenium-java 2.46.0. If it is necessary to use another
21
21
<dependency>
22
22
<groupId>io.appium</groupId>
23
23
<artifactId>java-client</artifactId>
24
-
<version>3.0.0</version>
24
+
<version>3.1.0</version>
25
25
<exclusions>
26
26
<exclusion>
27
27
<groupId>org.seleniumhq.selenium</groupId>
@@ -107,6 +107,11 @@ If you are using the Eclipse IDE, make sure you are using verison Luna or later.
107
107
108
108
##Changelog##
109
109
110
+
*3.1.1*
111
+
- Page-object findBy strategies are now aware of which driver (iOS or Android) you are using. For more details see the Pull Request: https://github.com/appium/java-client/pull/213
112
+
- If somebody desires to use their own Webdriver implementation then it has to implement HasCapabilities.
113
+
- Corrected an uninformative Exception message.
114
+
110
115
*3.0.0*
111
116
- AppiumDriver class is now a Generic. This allows us to return elements of class MobileElement (and its subclasses) instead of always returning WebElements and requiring users to cast to MobileElement. See https://github.com/appium/java-client/pull/182
0 commit comments