0

I am trying to automate the Bluetooth test cases. After scanning, i wanted to get the list and count of Available and paired devices. Further check weather my ref device name exist in DUT list. Is there any way through which i can display and traverse the hierarchy of anyone parent( available and pared devices) and with only text option(since most of the inbuilt traverse option with Class ID , no_id, Test etc). If i want to run a loop to search Ref device in DUT, how that is possible through Androidviewclient 3.2 and monkeyrunner.

user3548662
  • 29
  • 1
  • 7
  • Why don't you use latest `AndroidViewClient` version and what is Android device API level? – Prophet May 21 '14 at 21:13
  • We have written multiple testcases with monkey-runner and since monkey-runner works in coordinates bases. So we are doing minimal changes using Androidviewclient.Latest version of androidviewclient does not support Monkey-runner – user3548662 May 22 '14 at 05:16

1 Answers1

1

You can easily find the number of children of any View

# class=android.widget.ListView
android___id_list = vc.findViewByIdOrRaise("android:id/list")
print "list has", len(android___id_list.children), "children"

This is Wireless & networks settings on a KitKat phone.

Diego Torres Milano
  • 65,697
  • 9
  • 111
  • 134