Skip to content

Commit b121fe5

Browse files
committed
update to version 1.1.0
1 parent 554ed44 commit b121fe5

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Hosted in Maven Central Repository:
1111
<dependency>
1212
<groupId>io.appium</groupId>
1313
<artifactId>java-client</artifactId>
14-
<version>1.0.2</version>
14+
<version>1.1.0</version>
1515
</dependency>
1616
```
1717

@@ -56,6 +56,8 @@ Locators:
5656
- findElementsByAndroidUIAutomator()
5757

5858
##Changelog##
59-
59+
*1.1.0*
60+
- AppiumDriver now implements Rotatable. rotate() and getOrientation() methods added
61+
- when no appium server is running, the proper error is thrown, instead of a NullPointerException
6062
*1.0.2*
6163
- recompiled to include some missing methods such as shake() and complexFind()

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>io.appium</groupId>
88
<artifactId>java-client</artifactId>
9-
<version>1.0.2</version>
9+
<version>1.1.0</version>
1010
<dependencies>
1111
<dependency>
1212
<groupId>com.google.collections</groupId>

src/test/java/io/appium/java_client/IosUIAutomationTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public void findElementTest() {
4747
@Test
4848
public void findElementsTest() {
4949
List<WebElement> elements = driver.findElementsByIosUIAutomation("elements()");
50-
assertEquals(2, elements.size());
50+
assertEquals(3, elements.size());
5151
}
5252

5353
@Test

0 commit comments

Comments
 (0)