telemetry.internal.app.android_app
index
telemetry/internal/app/android_app.py

# Copyright 2012 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

 
Modules
       
telemetry.internal.app

 
Classes
       
telemetry.internal.app.App(__builtin__.object)
AndroidApp

 
class AndroidApp(telemetry.internal.app.App)
    A running android app instance that can be controlled in a limited way.
 
Be sure to clean up after yourself by calling Close() when you are done with
the app. Or better yet:
  with possible_android_app.Create(options) as android_app:
    ... do all your operations on android_app here
 
 
Method resolution order:
AndroidApp
telemetry.internal.app.App
__builtin__.object

Methods defined here:
Close(self)
GetProcess(self, subprocess_name)
Returns the process with the specified subprocess name.
GetProcesses(self)
Returns the current set of processes belonging to this app.
GetWebViews(self)
Returns the set of all WebViews belonging to all processes of the app.
__init__(self, app_backend, platform_backend)

Methods inherited from telemetry.internal.app.App:
GetStackTrace(self)
GetStandardOutput(self)
__enter__(self)
__exit__(self, *args)

Data descriptors inherited from telemetry.internal.app.App:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)
app_type
platform