Calabash console Android - query get all ids on screen -


in calabash console ios there command:

ids 

the command displays element ids on current screen.

for android can use command

query("*")  

which displays views on screen, can manually through , find ids.

but android equivalent command displaying ids?

android calabash equivalent command:

query("*",:id) 

Comments