-2

I am trying to Use View-client as a pure python .. not as a Monkey-runner and trying to get a Automation framework for Android devices using "UI Automator" + "Dtmilano" .

Any help please .. How to use "UI Automator" + "Dtmilano"?? and disabling View-client as "Monkey-runner"??

Allen Hair
  • 1,021
  • 2
  • 10
  • 21

1 Answers1

0

Not sure that I'm understanding the question, but I guess you are asking how to use AndroidViewClient/culebra with UiAutomator backend.

UiAutomator is automatically selected by AndroidViewClient/culebra as the backend if

self.useUiAutomator = (version >= 16) and not forceviewserveruse

that is, if API >= 16 and you are not forcing the use of ViewServer. Furthermore, AndroidViewClient/culebra is a pure python implementation so it does not depend on monkeyrunner since a long time ago.

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