Android MonkeyRunner????????
???????????? ???????[ 2015/8/12 13:33:49 ] ??????????????????
?????????????????MAC Pro????????????JDK7??Android SDK???????????????????????Python???????mac????????????????????????
??????д???????
#coding=utf-8
# Imports the monkeyrunner modules used by this program
from com.android.monkeyrunner import MonkeyRunner?? MonkeyDevice
# Connects to the current device?? returning a MonkeyDevice object
device = MonkeyRunner.waitForConnection()
# Installs the Android package. Notice that this method returns a boolean?? so you can test
# to see if the installation worked.
#device.installPackage('myproject/bin/MyApplication.apk')
# sets a variable with the package's internal name
package = 'com.wankr.app.doubi'
# sets a variable with the name of an Activity in the package
activity = 'com.wankr.app.doubi.MainActivity'
# sets the name of the component to start
runComponent = package + '/' + activity
# Runs the component
device.startActivity(component=runComponent)
MonkeyRunner.sleep(5)
# Takes a screenshot
result = device.takeSnapshot()
# Writes the screenshot to a file
result.writeToFile('/Users/HanHongmin/Documents/start.png'??'png')
MonkeyRunner.sleep(2)
#
for i in range(1??3):
device.drag((400??500)??(100??500)??0.2??10)
MonkeyRunner.sleep(1)
# Takes a screenshot
result2 = device.takeSnapshot()
# Writes the screenshot to a file
result2.writeToFile('/Users/HanHongmin/Documents/exit.png'??'png')
device.press('KEYCODE_HOME'??MonkeyDevice.DOWN_AND_UP)
?????????????
????monkeyrunner /Users/HanHongmin/Documents/wankr/monkeyrunner/test.py
????????п???????API?????????????????
???????????????????б??
?????????????????subPic = result.getSubImage((0??57??715??1123))
??????????newpic.sameAs(subPic??1.0)
??????
???·???
??????????????????
2023/3/23 14:23:39???д?ò??????????
2023/3/22 16:17:39????????????????????Щ??
2022/6/14 16:14:27??????????????????????????
2021/10/18 15:37:44???????????????
2021/9/17 15:19:29???·???????·
2021/9/14 15:42:25?????????????
2021/5/28 17:25:47??????APP??????????
2021/5/8 17:01:11