appium-uiautomator2-driver 3.7.6 → 3.7.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [3.7.7](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.6...v3.7.7) (2024-08-14)
2
+
3
+ ### Bug Fixes
4
+
5
+ * apply the latest io.appium.settings ([a1dfde4](https://github.com/appium/appium-uiautomator2-driver/commit/a1dfde4b3d9ffcfcdd89caa0e9382231970359bb))
6
+
1
7
  ## [3.7.6](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.5...v3.7.6) (2024-08-06)
2
8
 
3
9
  ### Miscellaneous Chores
package/README.md CHANGED
@@ -236,6 +236,12 @@ className | This strategy is mapped to the native UiAutomator's `By.clazz` [loca
236
236
  -android uiautomator | This strategy is mapped to the native UiAutomator's `UiSelector` [locator](https://developer.android.com/reference/androidx/test/uiautomator/UiSelector)). It is even possible to perform some advanced operations, like scrolling, with this locator type. Check [Guide on UiAutomator Locator Types](docs/uiautomator-uiselector.md) | `⭐⭐⭐⭐` | new UiScrollable(new UiSelector().resourceId(\"android:id/list\")).scrollIntoView(new UiSelector().text(\"Radio Group\"))
237
237
  xpath | For elements lookup Xpath strategy the driver uses the same XML tree that is generated by page source API. Only Xpath 1.0 is supported for appium-uiatomator2-server versions below 4.25.0. All server versions starting from 4.25.0 support both Xpath 1.0 and 2.0 | `⭐⭐⭐` | By.xpath("//android.view.View[@text=\"Regular\" and @checkable=\"true\"]")
238
238
 
239
+ > [!WARNING]
240
+ > Google is going to [deprecate](https://developer.android.com/training/testing/other-components/ui-automator#ui-automator)
241
+ > and remove `UiCollection`, `UiObject`, `UiScrollable`, and `UiSelector` support from the UiAutomator framework.
242
+ > This will render all `-android uiautomator`-based locators invalid, so please keep it in mind while
243
+ > using them or plan to use them in the future.
244
+
239
245
 
240
246
  ## Parallel Tests
241
247
 
@@ -1840,8 +1846,8 @@ This exception happens due to a known bug in the [Eclipse's Psychopath](https://
1840
1846
 
1841
1847
  The UiAutomator2 driver provides multiple options for touch gestures automation.
1842
1848
  For simple gestures, like swipe, scroll, drag, double click, fling or pinch use the corresponding
1843
- [gesture shortcuts](#mobile-gesture-commands).
1844
- You may also use [UiScrollable-based UiAutomator locators](./docs/uiautomator-uiselector.md)
1849
+ [gesture shortcuts](#mobile-gesture-commands).
1850
+ You may also use [UiScrollable-based UiAutomator locators](./docs/uiautomator-uiselector.md)
1845
1851
  to automate various scrolling behaviours.
1846
1852
  For more sophisticated gestures
1847
1853
  consider using [W3C actions](https://w3c.github.io/webdriver/#actions).