Skip to content

AutoItMonkey provides an AutoIt interface for working with the Android monkey tool.

License

Notifications You must be signed in to change notification settings

htejera/AutoItMonkey

Repository files navigation

AutoIt Monkey

AutoIt Monkey provides an AutoIt interface for working with the Android Monkey tool. This work is inspired by the CyberAgent-adbkit-monkey project a Node.js interface for working with the monkey tool.

Monkey

The Monkey is a program that runs on your emulator or device and generates pseudo-random streams of user events such as clicks, touches, or gestures, as well as a number of system-level events but also Monkey program can be started in TCP mode with the --port argument. In this mode, it accepts a range of commands that can be used to interact with the UI in a non-random manner.

AutoItMonkey provides an interface for write an AutoIt script that control an Android device or emulator from outside of Android code.

Examples

The following examples assume that monkey is already running (via adb shell monkey --port 1088) and a port forwarding (adb forward tcp:1088 tcp:1088) has been set up.

Drag out the notification bar

#include "monkey.au3"

Local $iMonkeyPort = 1088
Local $iSocket = _Monkey_Connect($iMonkeyPort)

;Drag out the notification bar
_Monkey_Touch_Down($iSocket,100, 0)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Move($iSocket,100, 20)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Move($iSocket,100, 40)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Move($iSocket,100, 60)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Move($iSocket,100, 80)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Move($iSocket,100, 100)
_Monkey_Sleep($iSocket,5)
_Monkey_Touch_Up($iSocket,100, 100)
_Monkey_Sleep($iSocket,5)

_Monkey_Shutdown($iSocket)

Get display size, width and height

#include "monkey.au3"

Local $iMonkeyPort = 1088
Local $iSocket = _Monkey_Connect($iMonkeyPort)

;Get display information
_ConsoleLog("Display density " & _Monkey_Get_DisplayDensity($iSocket))
_ConsoleLog("Display height " & _Monkey_Get_DisplayHeight($iSocket))
_ConsoleLog("Display width " & _Monkey_Get_DisplayWidth($iSocket))

_Monkey_Shutdown($iSocket)

Func _ConsoleLog($sText)
	ConsoleWrite($sText & @CRLF)
EndFunc

Type text

#include "monkey.au3"

Local $iMonkeyPort = 1088
Local $iSocket = _Monkey_Connect($iMonkeyPort)

;Note that you should manually focus a text field first.
_Monkey_Type($iSocket,"Hello Monkey!!")

_Monkey_Shutdown($iSocket)

Documentation

Check out the documentation: See doc generated by Natural Docs

Test

See Micro unit testing framework

Miscellaneous

This project use the excellent ISN AutoIt Studio IDE by Christian Faderl.

Contribution Guidelines

Please submit issues to ohtejera/AutoItMonkey and pull requests to *-dev branches.

gauchoiwantyou2w

License

Copyright © 2014 Henry Tejera [email protected]

This work is free. It comes without any warranty, to the extent permitted by applicable law. You can redistribute it and/or modify it under the terms of the Do What The Fuck You Want To Public License, Version 2, as published by Sam Hocevar. See WTFPL for more details

About

AutoItMonkey provides an AutoIt interface for working with the Android monkey tool.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published