am 55ee1d66
: Merge "DOC CHANGE: Fix bug 3448489 - Monkeyrunner example" into honeycomb
* commit '55ee1d66981f1edef966562f11c60886138544ea': DOC CHANGE: Fix bug 3448489 - Monkeyrunner example
This commit is contained in:
@ -110,8 +110,17 @@ device = MonkeyRunner.waitForConnection()
|
||||
# to see if the installation worked.
|
||||
device.installPackage('myproject/bin/MyApplication.apk')
|
||||
|
||||
# Runs an activity in the application
|
||||
device.startActivity(component='com.example.android.myapplication.MainActivity')
|
||||
# sets a variable with the package's internal name
|
||||
package = 'com.example.android.myapplication'
|
||||
|
||||
# sets a variable with the name of an Activity in the package
|
||||
activity = 'com.example.android.myapplication.MainActivity'
|
||||
|
||||
# sets the name of the component to start
|
||||
runComponent = package + '/' + activity
|
||||
|
||||
# Runs the component
|
||||
device.startActivity(component=runComponent)
|
||||
|
||||
# Presses the Menu button
|
||||
device.press('KEYCODE_MENU','DOWN_AND_UP')
|
||||
|
Reference in New Issue
Block a user