AppSwitcherContentView / Home Grabber / SBSwitcherWindow:Main #1593
-
In our React Native app, we see this full screen overlay layer that prevents Maestro from clicking on any element on the screen. Has anyone seen this before? It doesn't seem to be there when building a release build instead of debug. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
@sregg did you resolve this? We are having the same issue. |
Beta Was this translation helpful? Give feedback.
-
I ran into this issue as well in React Native.
The fix was adding accessible={false} to the "Pressable" parent component. It is also mentioned in the Maestro docs. @galgord hope this helps! |
Beta Was this translation helpful? Give feedback.
I ran into this issue as well in React Native.
Narrowed it down to having nested components on iOS.
The fix was adding accessible={false} to the "Pressable" parent component.
This should let you access the nested components in Maestro.
It is also mentioned in the Maestro docs.
@galgord hope this helps!