Find resource name for text box input and button fields for response native android app

I am trying to use the pre-launch report offered by the play store to launch my app on different devices. My application requires a login and the pre-launch report maintains pre-credentials in advance so the test environment can log in during the test. It requires me to fill out the following form enter image description here

I don't know how to find the resource name for the text input fields for username and password and the login button on the login page. Please let me know if there is a way to find resource names or provide resource name for such fields for Android app built with React Native

+3


source to share


1 answer


You can try Layout Inspector in android studio.

  • Run the application in the emulator.
  • Go to tools> Andriod> Layout inspector and select your app process.


Now you can get the ID of each species. this will be with the property name "mID". Check the screenshot below:

enter image description here

+4


source







All Articles