3

Is there any adb command to list all elements of current activity on Andoird app? I mean ,can i use adb shell and listing all available element (IDs or hierarchy) of FocusedActivity?

thanks

Iman
  • 41
  • 1
  • 3

1 Answers1

3

Use this command

adb shell uiautomator dump

You will get a XML file here, an XML with the dump of current UI hierarchy

UI hierchary dumped to: /sdcard/window_dump.xml

You can then download it by accessing it from Android Studio device explorer.

Dishonered
  • 8,449
  • 9
  • 37
  • 50