Bug: 213332752

Clone this repo:
  1. 7454af4 Add janitors to the OWNERS file by Sadaf Ebrahimi · 5 weeks ago main master
  2. 96d1077 Upgrade mobly to 1.12.3 am: 706ac57842 am: a82d3412c8 by Xianyuan Jia · 5 months ago
  3. a82d341 Upgrade mobly to 1.12.3 am: 706ac57842 by Xianyuan Jia · 5 months ago
  4. 706ac57 Upgrade mobly to 1.12.3 by Xianyuan Jia · 5 months ago
  5. e47a235 Upgrade mobly to 161ff47b51c5fa836bf7a14fbdc69587682018b3 am: 51b0b7394a am: 0200298ea2 by Ziwei Zhang · 10 months ago android15-tests-dev

Welcome to Mobly

Latest release Build Status

Mobly is a Python-based test framework that specializes in supporting test cases that require multiple devices, complex environments, or custom hardware setups.

Here are some example use cases:

  • P2P data transfer between two devices
  • Conference calls across three phones
  • Wearable device interacting with a phone
  • Internet-Of-Things devices interacting with each other
  • Testing RF characteristics of devices with special equipment
  • Testing LTE network by controlling phones, base stations, and eNBs

Mobly can support many different types of devices and equipment, and it's easy to plug your own device or custom equipment/service into Mobly.

Mobly comes with a set of libs to control common devices like Android devices.

While developed by Googlers, Mobly is not an official Google product.

Compatibility

Mobly requires python 3.11 or newer.

Mobly tests could run on the following platforms:

  • Ubuntu 14.04+
  • MacOS 10.6+
  • Windows 7+

System dependencies

  • adb (1.0.40+ recommended)
  • python3.11+

Installation

You can install the released package from pip

pip install mobly

or install from the source to use the bleeding edge:

git clone https://github.com/google/mobly.git
cd mobly
pip install -e .

You may need sudo for the above commands if your system has certain permission restrictions.

Tutorials

Mobly Snippet

The Mobly Snippet projects let users better control Android devices.

  • Mobly Snippet Lib: used for triggering custom device-side code from host-side Mobly tests. You could use existing Android libraries like UI Automator and Espresso.
  • Mobly Bundled Snippets: a set of Snippets to allow Mobly tests to control Android devices by exposing a simplified version of the public Android API suitable for testing.