Skip to content

Commit 701e0bc

Browse files
authored
Expose testID as resource-id on Android (#3287)
## Description When using `RectButton` and friends the `testID` prop is accessible in E2E testing frameworks on iOS but not on Android. This PR aligns behaviour of RN core components by exposing `testID` as a `resource-id`. Fixes #1661 ## Test plan Been testing this via Maestro Studio.
1 parent 7826f50 commit 701e0bc

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

android/src/main/java/com/swmansion/gesturehandler/react/RNGestureHandlerButtonViewManager.kt

+16
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ import android.view.View
2222
import android.view.View.OnClickListener
2323
import android.view.ViewGroup
2424
import android.view.ViewParent
25+
import android.view.accessibility.AccessibilityNodeInfo
2526
import androidx.core.view.children
27+
import com.facebook.react.R
2628
import com.facebook.react.module.annotations.ReactModule
2729
import com.facebook.react.uimanager.PixelUtil
2830
import com.facebook.react.uimanager.ThemedReactContext
@@ -241,6 +243,20 @@ class RNGestureHandlerButtonViewManager : ViewGroupManager<ButtonViewGroup>(), R
241243
_backgroundColor = color
242244
}
243245

246+
override fun onInitializeAccessibilityNodeInfo(info: AccessibilityNodeInfo) {
247+
super.onInitializeAccessibilityNodeInfo(info)
248+
249+
// Expose the testID prop as the resource-id name of the view. Black-box E2E/UI testing
250+
// frameworks, which interact with the UI through the accessibility framework, do not have
251+
// access to view tags. This allows developers/testers to avoid polluting the
252+
// content-description with test identifiers.
253+
val testId = super.getTag(R.id.react_test_id)
254+
255+
if (testId is String) {
256+
info.setViewIdResourceName(testId)
257+
}
258+
}
259+
244260
override fun onInterceptTouchEvent(ev: MotionEvent): Boolean {
245261
if (super.onInterceptTouchEvent(ev)) {
246262
return true

0 commit comments

Comments
 (0)