Skip to content

Commit 8666224

Browse files
committed
v1.7.0
1 parent 06a2c34 commit 8666224

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

README.md

+9-2
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Depends upon the Selenium Java client library, available [here](http://docs.sele
1111
<dependency>
1212
<groupId>io.appium</groupId>
1313
<artifactId>java-client</artifactId>
14-
<version>1.6.2</version>
14+
<version>1.7.0</version>
1515
</dependency>
1616
```
1717

@@ -53,7 +53,7 @@ More can be found in the docs, but here's a quick list of features which this pr
5353
- openNotifications()
5454
- Context Switching: .context(), .getContextHandles(), getContext())
5555
- getNetworkConnection(), setNetworkConnection()
56-
- ignoreUnimportantViews
56+
- ignoreUnimportantViews(), getSettings()
5757

5858
Locators:
5959
- findElementByAccessibilityId()
@@ -64,6 +64,13 @@ Locators:
6464
- findElementsByAndroidUIAutomator()
6565

6666
##Changelog##
67+
*1.7.0*
68+
- Removed `scrollTo()` and `scrollToExact()` methods because they relied on `complexFind()`. They will be added back in the next version!
69+
- Removed `complexFind()`
70+
- Added `startActivity()` method
71+
- Added `isLocked()` method
72+
- Added `getSettings()` and `ignoreUnimportantViews()` methods
73+
6774
*1.6.2*
6875
- Added MobilePlatform interface (Android, IOS, FirefoxOS)
6976
- Added MobileBrowserType interface (Safari, Browser, Chromium, Chrome)

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>io.appium</groupId>
77
<artifactId>java-client</artifactId>
8-
<version>1.6.2</version>
8+
<version>1.7.0</version>
99
<dependencies>
1010
<dependency>
1111
<groupId>com.google.code.gson</groupId>

src/main/java/io/appium/java_client/AppiumDriver.java

+1
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,7 @@ private void setSetting(AppiumSetting setting, Object value) {
653653

654654
/**
655655
* Set the `ignoreUnimportantViews` setting.
656+
* *Android-only method*
656657
*
657658
* Sets whether Android devices should use `setCompressedLayoutHeirarchy()` which ignores all views which are marked IMPORTANT_FOR_ACCESSIBILITY_NO or IMPORTANT_FOR_ACCESSIBILITY_AUTO (and have been deemed not important by the system), in an attempt to make things less confusing or faster.
658659
*

0 commit comments

Comments
 (0)