Use the Monkey command to quickly slide the screen

高洛峰
Release: 2017-03-23 16:54:15
Original
2114 people have browsed it

1. Introduction to Monkey Testing
Monkey testing is a means of automated testing on the Android platform. The Monkey program simulates user operations such as touching the screen, sliding the Trackball, and pressing buttons to test the program on the device. Stress testing is used to detect how long it takes for the program to become abnormal.
2. Introduction to the Monkey program
1) The Monkey program comes with the Android system and is written in Java language. The storage path in the Android file system is: /system/framework/monkey.jar ;
2) The Monkey.jar program is started and executed by a Shell script named "monkey". The storage path of the shell script in the Android file system is: /system/bin/monkey; in this way, it can be executed through CMD Execute in the window: adb shell monkey {+command parameters} to perform Monkey testing.
There are more than a dozen items in the list, and there are also several heavy-duty controls, such as infinite scrolling horizontal banners and controls similar to Taobao headlines that can infinitely scroll vertically. Worried about memory leaks or other problems, I used mokey testing and quickly swiped to discover hidden problems.
Run

monkeyrunner fling.py
Copy after login


Check android monitor memory is also released
利用Monkey命令操作屏幕快速滑动
The test code is as follows
The code is as follows fling.py

#!/usr/bin/env monkeyrunner
import time
from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice
device = MonkeyRunner.waitForConnection(5)
# fling up
def scrollUpFling():
device.touch(100, 500, MonkeyDevice.DOWN)
device.touch(100, 100, MonkeyDevice.MOVE)
device.touch(100, 100, MonkeyDevice.UP)
print "fling up"
# fling down
def scrollDownFling():
device.touch(100, 400, MonkeyDevice.DOWN)
device.touch(100, 500, MonkeyDevice.MOVE)
device.touch(100, 500, MonkeyDevice.UP)
print "fling down"
def fling():
for i in range(1,1000):
scrollUpFling()
time.sleep(0.1)
scrollDownFling()
time.sleep(0.1)
fling()
Copy after login


The above is the detailed content of Use the Monkey command to quickly slide the screen. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!