1

In Calabash console for iOS there is a command:

ids

The command displays all the element ids on the current screen.

For Android you can use command

query("*") 

Which displays all the views on screen, you can manually look through and find the ids.

But what is the Android equivalent command for just displaying ids?

Jake Graham Arnold
  • 1,416
  • 2
  • 19
  • 40

1 Answers1

2

Android Calabash equivalent command:

query("*",:id)
Jake Graham Arnold
  • 1,416
  • 2
  • 19
  • 40