appium-uiautomator2-driver 3.9.8 → 3.10.0
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 +12 -0
- package/README.md +1 -1
- package/build/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +56 -55
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.10.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.9...v3.10.0) (2025-01-24)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* bump appium-adb to handle screenState=SCREEN_STATE_OFF as locked ([#861](https://github.com/appium/appium-uiautomator2-driver/issues/861)) ([fdd362a](https://github.com/appium/appium-uiautomator2-driver/commit/fdd362a8087c66aa6a0825bb18865a43e2ee5288))
|
|
6
|
+
|
|
7
|
+
## [3.9.9](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.8...v3.9.9) (2025-01-16)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* bump io.appium.settings to include the broad cast receiver update ([#858](https://github.com/appium/appium-uiautomator2-driver/issues/858)) ([bd8cfe7](https://github.com/appium/appium-uiautomator2-driver/commit/bd8cfe77da8ab3f47a80af7550c0f8ebb9abb695))
|
|
12
|
+
|
|
1
13
|
## [3.9.8](https://github.com/appium/appium-uiautomator2-driver/compare/v3.9.7...v3.9.8) (2025-01-09)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/README.md
CHANGED
|
@@ -169,7 +169,7 @@ appium:ensureWebviewsHavePages | Whether to skip web views that have no pages fr
|
|
|
169
169
|
appium:enableWebviewDetailsCollection | Whether to retrieve extended web views information using devtools protocol. Enabling this capability helps to detect the necessary chromedriver version more precisely. `true` by default since Appium 1.22.0, `false` if lower than 1.22.0.
|
|
170
170
|
appium:chromedriverPort | The port number to use for Chromedriver communication. Any free port number is selected by default if unset.
|
|
171
171
|
appium:chromedriverPorts | Array of possible port numbers to assign for Chromedriver communication. If none of the port in this array is free then an error is thrown.
|
|
172
|
-
appium:chromedriverArgs | Array of chromedriver
|
|
172
|
+
appium:chromedriverArgs | Array of chromedriver command line arguments, listed with `chromedriver --help`. Note that not all command line arguments available for the desktop browser are also available for the mobile one.
|
|
173
173
|
appium:chromedriverExecutable | Full path to the chromedriver executable on the server file system.
|
|
174
174
|
appium:chromedriverExecutableDir | Full path to the folder where chromedriver executables are located. This folder is used then to store the downloaded chromedriver executables if automatic download is enabled. Read [Automatic Chromedriver Discovery article](#automatic-discovery-of-compatible-chromedriver) for more details.
|
|
175
175
|
appium:chromedriverChromeMappingFile | Full path to the chromedrivers mapping file. This file is used to statically map webview/browser versions to the chromedriver versions that are capable of automating them. Read [Automatic Chromedriver Discovery article](#automatic-discovery-of-compatible-chromedriver) for more details.
|