I have been using Appium to test an hybrid android application including frequent transition between NATIVE and WEBVIEW context. These Webviews are developed using React Libraries.
To my understanding and correct me if I am wrong, How React Works is that it creates a Virtual DOM using the real DOM and generates a dynamic class name corresponding to those in the javascript. The Diff Algorithm provides efficient way to differentiate the objects using those auto generated class names.
The problem I am facing is that using Appium I am not able to access the elements from these webview using any of the findElementsBy
method. The class name being only parameter visible to the UIAutomator on which we could really rely on is changed by React on every new build generated.
- Is there a way so that I can refactor these auto-generated class names to some sensible names using the React library itself?
The chrome inspect provides the details of the webview in my application as :
<div class="_32f8NoUfyUtNSxo3w4Ptbp" data-reactid=".0.1.$=13:0.0.0">…</div>
- Any ideas on how to access the actual DOM elements using Appium for this case?
Info : WebView.setWebContentsDebuggingEnabled(true)
is set in the app code.
Would appreciate any leads here as well.
Based on this link : https://github.com/facebook/react-native/issues/7135
The workaround for this problem : use both accessible and accessibleLabel on your views
DOC on accessiblity label: https://facebook.github.io/react-native/docs/accessibility.html#accessibilitylabel-ios-android
On my react native component :
On my script Test :