Loading docs/html/guide/developing/tools/monkeyrunner_concepts.jd +11 −2 Original line number Diff line number Diff line Loading @@ -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') Loading Loading
docs/html/guide/developing/tools/monkeyrunner_concepts.jd +11 −2 Original line number Diff line number Diff line Loading @@ -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') Loading