Android測試教程(16):monkeyrunner簡介

來源:互聯網
上載者:User

如果你需要實現自動化的測試,Android的monkeyrunner 工具可以協助你實現自動化的測試,它提供了一組API可以用來控制Android裝置或模擬器,使用monkeyrunner,你可以編寫Python 程式來安裝Android應用或是測試包,運行應用或測試,發送按鍵訊息,並可以截屏,然後儲存在電腦中。monkeyrunner 主要目的是用來在應用程式或架構層次來測試應用程式或運行單元測試包,但你也可以用作其它目的。

monkeyrunner 工具包不同於UI/Application Exerciser Monkey(也稱為Money),money 通過adb shell 來運行,可以類比“猴子”隨機按鍵或是發送系統訊息給指定的應用來實現Stress 測試。

monkeyrunner API 主要通過下面三個包:

  • MonkeyRunner: 主要提供了monkeyrunner 應用的輔助方法以及,用來連結裝置或是模擬器的方法,並提供UI支援等。
  • MonkeyDevice: 代表一個裝置或是模擬器,提供安裝,卸載應用的方法,啟動一個Activity,發送按鍵或是Touch 事件等。
  • MonkeyImage: 代表一個截屏映像,可以截取不同格式的映像,比較兩個MonkeyImage映像,儲存映像等。

下面為一個 Python 寫的monkeyrunner 應用, 因為涉及到Python 語言,這裡不詳細說明了

# Imports the monkeyrunner modules used by this program<br />from com.android.monkeyrunner import MonkeyRunner, MonkeyDevice</p><p># Connects to the current device, returning a MonkeyDevice object<br />device = MonkeyRunner.waitForConnection()</p><p># Installs the Android package. Notice that this method returns a boolean,<br /># so you can test to see if the installation worked.<br />device.installPackage('myproject/bin/MyApplication.apk')</p><p># sets a variable with the package's internal name<br />package = 'com.example.android.myapplication'</p><p># sets a variable with the name of an Activity in the package<br />activity = 'com.example.android.myapplication.MainActivity'</p><p># sets the name of the component to start<br />runComponent = package + '/' + activity</p><p># Runs the component<br />device.startActivity(component=runComponent)</p><p># Presses the Menu button<br />device.press('KEYCODE_MENU','DOWN_AND_UP')</p><p># Takes a screenshot<br />result = device.takeSnapshot()</p><p># Writes the screenshot to a file<br />result.writeToFile('myproject/shot1.png','png')

 

詳細的API說明請參考Android文檔 ,如果你需要實現自動化的測試,編寫測試代碼,可以使用Python通過monkeyrunner API來實現。

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.