-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
testID, accessibilityLabel information not visible in Appium (Android only) #30226
Comments
There is a PR with a fix for this: |
Any update for IOS on this ? |
Facing the same issue |
This problem is not actual starting from
|
Hey there, it looks like there has been no activity on this issue recently. Has the issue been fixed, or does it still require the community's attention? This issue may be closed if no further activity occurs. You may also label this issue as a "Discussion" or add it to the "Backlog" and I will leave it open. Thank you for your contributions. |
We have the same issue and we are also trying to figure out the relation between those 3 props. It's hard to give a how to write end-2-end guide without knowing how they are related and impact each other. Have you succeed ? This should be flagged as major bug btw. |
Same Problem. |
Same problem... very frustrating |
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
Pls don't close until it is fixed. Thanks 🙌 |
This issue is stale because it has been open 180 days with no activity. Remove stale label or comment or this will be closed in 7 days. |
This issue was closed because it has been stalled for 7 days with no activity. |
Description
When inspecting a react-native app on Android via Appium, testing identifiers like
testID
oraccessibilityLabel
sometimes appear and sometimes don't. There is no major difference in how nested the elements are for when they appear and when they don't - they just sometimes don't. This is not an issue on iOS, everything works fine there.Whether, as has been mentioned in various places, I put
testID
,testID
&accessibilityLabel
or justaccessibilityLabel
the issue is there. Whether or not I add the prop ofaccessible={true}
or not, the issue is there.React Native version:
expect(await driver.hasElementByAccessibilityId('container')).toBe(true);
expect(await driver.hasElementByAccessibilityId('testText')).toBe(true);
The text was updated successfully, but these errors were encountered: