Last active
May 27, 2020 23:57
-
-
Save sjp38/6202539 to your computer and use it in GitHub Desktop.
Sample code for monkeyrunner's MOVE usage
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env monkeyrunner | |
import time | |
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice | |
device = MonkeyRunner.waitForConnection() | |
# Touch down screen | |
device.touch(100, 500, MonkeyDevice.DOWN) | |
# Move from 100, 500 to 300, 500 | |
for i in range(1, 11): | |
device.touch(100 + 20 * i, 500, MonkeyDevice.MOVE) | |
print "move ", 100 + 20 * i, 500 | |
time.sleep(0.1) | |
# Move from (300, 500 to 200, 500) | |
for i in range(1, 11): | |
device.touch(300, 500 - 10 * i, MonkeyDevice.MOVE) | |
print "move ", 300, 500 - 10 * i | |
time.sleep(0.1) | |
# Remove finger from screen | |
device.touch(300, 400, MonkeyDevice.UP) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
null pointer exception at line 10