appium-uiautomator2-driver 3.0.0 → 3.0.1
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 +7 -0
- package/README.md +3 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +97 -83
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
## [3.0.1](https://github.com/appium/appium-uiautomator2-driver/compare/v3.0.0...v3.0.1) (2024-02-23)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* bump uia2 server that has androidx.test.uiautomator:uiautomator:2.3.0 ([#744](https://github.com/appium/appium-uiautomator2-driver/issues/744)) ([56dab5d](https://github.com/appium/appium-uiautomator2-driver/commit/56dab5d4081bf9ca64b8736be636c5210965dc34))
|
|
7
|
+
|
|
1
8
|
## [3.0.0](https://github.com/appium/appium-uiautomator2-driver/compare/v2.45.1...v3.0.0) (2024-02-10)
|
|
2
9
|
|
|
3
10
|
|
package/README.md
CHANGED
|
@@ -562,7 +562,9 @@ Stop the previously started screen streaming. If no screen streaming server has
|
|
|
562
562
|
|
|
563
563
|
### mobile: getNotifications
|
|
564
564
|
|
|
565
|
-
Retrieves Android notifications via Appium Settings helper. Appium Settings app itself must be *manually* granted to access notifications under device Settings in order to make this feature working.
|
|
565
|
+
Retrieves Android notifications via Appium Settings helper. Appium Settings app itself must be *manually* granted to access notifications under device Settings in order to make this feature working. Different vendors [might](https://github.com/appium/io.appium.settings/issues/147#issue-2130780990) require more than just the normal Notification permissions at the usual Apps menu. Try to look in places like Privacy menus if you are getting zero items retrieved while expecting some results.
|
|
566
|
+
|
|
567
|
+
Appium Settings helper keeps all the active notifications plus notifications that appeared while it was running in the internal buffer, but no more than 100 items altogether. Newly appeared notifications are always added to the head of the notifications array. The `isRemoved` flag is set to `true` for notifications that have been removed.
|
|
566
568
|
See https://developer.android.com/reference/android/service/notification/StatusBarNotification and https://developer.android.com/reference/android/app/Notification.html for more information on available notification properties and their values.
|
|
567
569
|
|
|
568
570
|
#### Returned Result
|