appium-espresso-driver 2.13.8 → 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,10 @@
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
+
1
8
  ## [2.13.8](https://github.com/appium/appium-espresso-driver/compare/v2.13.7...v2.13.8) (2022-12-03)
2
9
 
3
10
 
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: mobileWebAtoms
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
 
@@ -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
- androidTestImplementation("androidx.test.uiautomator:uiautomator:${Version.uia}")
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
- androidTestImplementation("androidx.compose.ui:ui-test-junit4:${composeVersion}"){
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)