appium-uiautomator2-driver 3.7.10 → 3.8.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 +11 -10
- package/build/tsconfig.tsbuildinfo +1 -1
- package/npm-shrinkwrap.json +184 -318
- package/package.json +3 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,15 @@
|
|
|
1
|
+
## [3.8.0](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.11...v3.8.0) (2024-09-17)
|
|
2
|
+
|
|
3
|
+
### Features
|
|
4
|
+
|
|
5
|
+
* Bump appium-chromedriver ([#828](https://github.com/appium/appium-uiautomator2-driver/issues/828)) ([653b140](https://github.com/appium/appium-uiautomator2-driver/commit/653b140b639c03ea8573efc2d3fe0662f60df681))
|
|
6
|
+
|
|
7
|
+
## [3.7.11](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.10...v3.7.11) (2024-09-13)
|
|
8
|
+
|
|
9
|
+
### Miscellaneous Chores
|
|
10
|
+
|
|
11
|
+
* Bump android driver ([c62ae8c](https://github.com/appium/appium-uiautomator2-driver/commit/c62ae8c632fb343e0d724a444994625c6b9a2f94))
|
|
12
|
+
|
|
1
13
|
## [3.7.10](https://github.com/appium/appium-uiautomator2-driver/compare/v3.7.9...v3.7.10) (2024-09-12)
|
|
2
14
|
|
|
3
15
|
### Miscellaneous Chores
|
package/README.md
CHANGED
|
@@ -243,6 +243,11 @@ xpath | For elements lookup Xpath strategy the driver uses the same XML tree tha
|
|
|
243
243
|
> using them or plan to use them in the future.
|
|
244
244
|
|
|
245
245
|
|
|
246
|
+
# BiDi Protocol Support
|
|
247
|
+
|
|
248
|
+
UIAutomator2 driver has partial support of the [BiDi Protocol](https://w3c.github.io/webdriver-bidi/) since version 3.7.10. Check the [Supported BiDi Commands And Events](./docs/bidi.md) document for more details.
|
|
249
|
+
|
|
250
|
+
|
|
246
251
|
## Parallel Tests
|
|
247
252
|
|
|
248
253
|
It is possible to execute tests in parallel using UiAutomator2 driver.
|
|
@@ -1678,6 +1683,8 @@ There are several ways to provide a customized Chromedriver to UIA2 driver:
|
|
|
1678
1683
|
|
|
1679
1684
|
#### When installing the driver
|
|
1680
1685
|
|
|
1686
|
+
_Note_: This only works for driver versions below 3.8.0
|
|
1687
|
+
|
|
1681
1688
|
Specify the Chromedriver version in the `CHROMEDRIVER_VERSION` environment variable:
|
|
1682
1689
|
|
|
1683
1690
|
```bash
|
|
@@ -1739,19 +1746,13 @@ There is a possibility to automatically download the necessary chromedriver(s) i
|
|
|
1739
1746
|
|
|
1740
1747
|
### Troubleshooting Chromedriver Download Issues
|
|
1741
1748
|
|
|
1742
|
-
|
|
1743
|
-
of
|
|
1744
|
-
|
|
1745
|
-
By default, Chromedriver is retrieved from `https://chromedriver.storage.googleapis.com/`.
|
|
1746
|
-
To use a mirror of the above URL change the value of `CHROMEDRIVER_CDNURL` environemnt variable:
|
|
1747
|
-
|
|
1748
|
-
```bash
|
|
1749
|
-
CHROMEDRIVER_CDNURL=https://npmmirror.com/mirrors/chromedriver appium driver install uiautomator2
|
|
1750
|
-
```
|
|
1749
|
+
Check the [Custom binaries url](https://github.com/appium/appium-chromedriver?tab=readme-ov-file#custom-binaries-url)
|
|
1750
|
+
section of appium-chromedriver README for more details on how to customize the download CDN.
|
|
1751
1751
|
|
|
1752
1752
|
It may also be necessary to adjust network proxy and firewall settings for the above to work.
|
|
1753
1753
|
|
|
1754
|
-
|
|
1754
|
+
If you use a UIA2 driver below version 3.8.0, and you
|
|
1755
|
+
would like skip the automated download of Chromedriver upon driver install, do it by
|
|
1755
1756
|
defining the `APPIUM_SKIP_CHROMEDRIVER_INSTALL` environment variable:
|
|
1756
1757
|
|
|
1757
1758
|
```bash
|