| |
- __builtin__.object
-
- App
class App(__builtin__.object) |
|
A running application 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_app.Create(options) as app:
... do all your operations on app here |
|
Methods defined here:
- Close(self)
- GetStackTrace(self)
- GetStandardOutput(self)
- __enter__(self)
- __exit__(self, *args)
- __init__(self, app_backend, platform_backend)
Data descriptors defined here:
- __dict__
- dictionary for instance variables (if defined)
- __weakref__
- list of weak references to the object (if defined)
- app_type
- platform
| |