appium-espresso-driver 2.13.7 → 2.13.9
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,17 @@
|
|
|
1
|
+
## [2.13.9](https://github.com/appium/appium-espresso-driver/compare/v2.13.8...v2.13.9) (2023-01-03)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Miscellaneous Chores
|
|
5
|
+
|
|
6
|
+
* add because in the gradle file ([#841](https://github.com/appium/appium-espresso-driver/issues/841)) ([4fe7088](https://github.com/appium/appium-espresso-driver/commit/4fe7088e280a1fc3c504d0934f80fab1132c3437))
|
|
7
|
+
|
|
8
|
+
## [2.13.8](https://github.com/appium/appium-espresso-driver/compare/v2.13.7...v2.13.8) (2022-12-03)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Miscellaneous Chores
|
|
12
|
+
|
|
13
|
+
* **deps-dev:** bump webdriverio from 7.27.0 to 8.0.2 ([#838](https://github.com/appium/appium-espresso-driver/issues/838)) ([2b22c11](https://github.com/appium/appium-espresso-driver/commit/2b22c11a302b74fa931065d59d894dd42ff82f6f))
|
|
14
|
+
|
|
1
15
|
## [2.13.7](https://github.com/appium/appium-espresso-driver/compare/v2.13.6...v2.13.7) (2022-12-01)
|
|
2
16
|
|
|
3
17
|
|
package/README.md
CHANGED
|
@@ -1061,7 +1061,7 @@ Allows to retrieve accessibility elements hierarchy tree with [UiAutomator](http
|
|
|
1061
1061
|
|
|
1062
1062
|
The UI accessibility hierarchy represented as XML document.
|
|
1063
1063
|
|
|
1064
|
-
### mobile:
|
|
1064
|
+
### mobile: webAtoms
|
|
1065
1065
|
|
|
1066
1066
|
Allows to run a chain of [Espresso web atoms](https://developer.android.com/training/testing/espresso/web) on a web view element.
|
|
1067
1067
|
|
|
Binary file
|
|
@@ -121,8 +121,12 @@ dependencies {
|
|
|
121
121
|
// Link to PR with fix and discussion https://github.com/appium/appium-espresso-driver/pull/596
|
|
122
122
|
isTransitive = false
|
|
123
123
|
}
|
|
124
|
-
androidTestImplementation("androidx.test.espresso:espresso-web:${Version.espresso}")
|
|
125
|
-
|
|
124
|
+
androidTestImplementation("androidx.test.espresso:espresso-web:${Version.espresso}") {
|
|
125
|
+
because("Espresso Web Atoms support (mobile: webAtoms)")
|
|
126
|
+
}
|
|
127
|
+
androidTestImplementation("androidx.test.uiautomator:uiautomator:${Version.uia}") {
|
|
128
|
+
because("UiAutomator support (mobile: uiautomator)")
|
|
129
|
+
}
|
|
126
130
|
androidTestImplementation("androidx.test:core:${Version.testlib}")
|
|
127
131
|
androidTestImplementation("androidx.test:runner:${Version.testlib}")
|
|
128
132
|
androidTestImplementation("androidx.test:rules:${Version.testlib}")
|
|
@@ -130,9 +134,12 @@ dependencies {
|
|
|
130
134
|
androidTestImplementation("org.nanohttpd:nanohttpd-webserver:${Version.nanohttpd}")
|
|
131
135
|
androidTestImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:${kotlinVersion}")
|
|
132
136
|
androidTestImplementation("org.jetbrains.kotlin:kotlin-reflect:${kotlinVersion}")
|
|
133
|
-
androidTestImplementation("androidx.compose.ui:ui-test:${composeVersion}")
|
|
134
|
-
|
|
137
|
+
androidTestImplementation("androidx.compose.ui:ui-test:${composeVersion}") {
|
|
138
|
+
because("Android Compose support")
|
|
139
|
+
}
|
|
140
|
+
androidTestImplementation("androidx.compose.ui:ui-test-junit4:${composeVersion}") {
|
|
135
141
|
isTransitive = false
|
|
142
|
+
because("Android Compose support")
|
|
136
143
|
}
|
|
137
144
|
|
|
138
145
|
// additionalAndroidTestDependencies placeholder (don't change or delete this line)
|