0

its a weird question and might not even be possible at all, but I'm still asking. I am looking for a way to automate certain tasks with python on multiple android emulators at once. So either a way to use commands to start emulators running certain scripts or some kind of container around the emulator that would be able to be controlled by python/ do certain clicks. I'm hoping someone knows a solution to this

MarWo22
  • 51
  • 7

1 Answers1

0

You can use ADB commands to control both real Android devices and emulators, so one option would be to call the adb binary using subprocess from Python.

It is possible to emulate different input events using ADB such as clicks, as well as start and stop apps and services, and much much more.

You can communicate with multiple devices as well sending different commands to each one.

Lev M.
  • 6,088
  • 1
  • 10
  • 23