UI Automator viewer is not showing resource id

Hi All,

   For automating the the android app created by using  ionic( version 1.7.15 ) in the uiautomaterviewer of android tools,

Problem Statement
I’m in need of resource-id to do the automation testing.I’m hereby comparing the my app with pacifica for the proper understanding of my exact problem.

Expected Result

The app of pacifica developed in ionic(version unknown),installed in SAMSUNG galaxy J2 and automated in uiautomaterviewer,The resourced id is available

Sample Screenshot

Actual Result

The app developed by us in ionic(version 1.7.15), installed in SAMSUNG galaxy J2 and automated in uiautomaterviewer,The resourced id is not available

Sample Screenshot

It will be better if i get values for the following fields,
a) text
b) content-desc

Kindly revert for any more details and please do give you most valuable tips to sort it out.

Regards,

Madhavan

2 Likes

I have the same problem. I dont see any Resource-id.

Same problem. I can’t find the solution.

Same problem. Unable to set resource-id and text. However if I set title it goes to content-desc?

Hey,

First of all, is there any resolution for this yet?

I am also not able to fetch any IDs set or even content description.

I have set them as following:
<ion-button resource-id="buttonLogin" shape="round" (click)="validateData()" aria-label="Login Button">Login</ion-button>

Here aria-label is for Content Description and resource-id is for ID.

Is there any other way of doing it? (I am new to ionic so these things are confusing as of now)

Thanks

I was running into the same issue and finally discovered it has been working the entire time, but the default UI Automator view does not allow you to see what you actually set.

Using Ionic elements, you are effectively wrapping the native HTML elements with ionic, ion-input wraps input. So when you place the ID on the ion-input to set the resource ID:

<ion-input id="userName">

the resource ID is on the wrapped parent, not the child. This is important as, from my experience, you are not able to see the Ionic parent in UI Automator viewer.

I was only able to see this when I used Appium’s integrations of UI Automator viewer. It showed the ionic parent in the snapshot and allowed me to access it. Fortunately, you can still access the child uniquely from the parent’s resource ID. There is only ever one child on the parent for inputs or buttons, so you just select the first child of the parent with the resource-id you need.

Hope this helps.