-
-
Save jiasheng-li089/191c1f4cc55d52ba08dfe314e2137636 to your computer and use it in GitHub Desktop.
Monkeyrunner Code Snippets
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) |
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
| adb shell monkey -v -s 50 -p com.watsons.mobile --throttle 300 100000 >> mokey.txt & |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
android monkey 测试样例