5個最佳的Android測試框架(帶示例)
本文由碼農網 – 小峰原創翻譯,轉載請看清文末的轉載要求,歡迎參與我們的付費投稿計劃!
谷歌的Android生態系統正在不斷地迅速擴張。有證據表明,新的移動OEM正在攻陷世界的每一個角落,不同的螢幕尺寸、ROM /韌體、晶片組以及等等等等,層出不窮。於是乎,對於Android開發人員而言,處理儲存碎片變得越來越困窘。
不過幸運的是,Android(還有iOS)開發人員可以無限制地訪問一些先進的基於雲的解決方案,如Testdroid Cloud,就可以在大規模的真實裝置上執行自動化測試以確保質量,贊吧。此外,不同的Android測試框架的出現也大大減輕了Android開發人員的負擔。
今天,我們就要說說5款最常用的Android測試框架,並且每個框架都給出了基本的程式碼示例。
1.Robotium
不可否認,Robotium曾是Android世界之初使用最廣泛的Android測試框架,風靡一時。由於它與Android有著相似的Selenium,所以它能夠使得API的測試變得簡單起來。
Robotium是一個擴充套件於JUnit的開源庫,運用多種有用的方法來支援Android UI測試。它提供的強大的自動化黑箱測試範例,可用於Android應用(原生的和混合的)和web測試。只要原始碼允許,你就可以通過Robotium寫功能、系統和驗收測試方案,以及測試應用。
Robotium的程式碼示例:
// Public void for the operation public void testRecorded() throws Exception { // Wait for the text 'Hello!' to be shown for newbie if (solo.waitForText("Hello!")) { // R class ID identifier for 'Sign in' - and click it solo.clickOnView(solo.findViewById("com.twitter.android.R.id.sign_in")); // R class ID identifier for entering username solo.enterText((EditText) solo.findViewById("com.twitter.android.R.id.login_username"),"username"); // R class ID identifier for entering password solo.enterText((EditText) solo.findViewById("com.twitter.android.R.id.login_password"),"password"); // R class ID identifier for clicking log in solo.clickOnView(solo.findViewById("com.twitter.android.R.id.login_login")); // Wait until log in is done solo.waitForActivity("HomeTabActivity"); } // Activate the text field to compose a tweet solo.clickOnView(solo.findViewById("com.twitter.android.R.id.menu_compose_tweet")); // Type the tweet solo.enterText((EditText) solo.findViewById("com.twitter.android.R.id.edit"), "Testdroid"); // Tweeting! solo.clickOnView(solo.findViewById("com.twitter.android.R.id.composer_post")); }
為了給大家提供便捷,還有一個用Robotium構建的用於測試指令碼建立的一個非常棒的記錄工具——Testdroid Recorder。當你在真實裝置上執行實際行動時,它可以記錄你的每一個步驟和每一個行為,並轉換成JavaScript,以便於你進一步的修改。
並且,你還可以全權下載和使用它的擴充套件庫——ExtSolo,它裡面包含了多種還沒有被納入到Robotium中的實用方法,例如:
- 支援任意解析度的x、Y點選自動縮放
- 多路徑拖動
- 測試故障時自動截圖
- 模擬地點
- 更改裝置語言
- 控制WiFi連線
官方網站:https://code.google.com/p/robotium/
2.uiautomator
雖然Robotium是一個很好的測試框架,但是uiautomator能讓你在測試Android應用和Android遊戲時做得更多。谷歌的測試框架允許你在一個或多個裝置上測試原生Android應用的使用者介面(UI)。Uiautomator的另一個優點是,它執行的JUnit測試用例是有特殊許可權的,這意味著測試用例可以跨越不同的程式。它還提供了五種不同的類給開發人員使用:
com.android.uiautomator.core.UiCollection; com.android.uiautomator.core.UiDevice; com.android.uiautomator.core.UiObject; com.android.uiautomator.core.UiScrollable; com.android.uiautomator.core.UiSelector
遺憾的是,uiautomator只能工作於API16或更高階別的Android裝置上。它的另一個缺點是不支援web檢視,也沒有辦法直接訪問Android物件。
uiautomator的程式碼示例:
// Public void for the operation public void testSignInAndTweet() throws Exception { // Starting application: getUiDevice().wakeUp(); // Press Home button to ensure we're on homescreen getUiDevice().pressHome(); // Select 'Apps' and click button new UiObject(new UiSelector().description("Apps")).click(); // Select 'Twitter' and click new UiObject(new UiSelector().text("Twitter")).click(); // Locate and select 'Sign in' UiSelector signIn = new UiSelector().text("Sign In"); // If button is available, click UiObject signInButton = new UiObject(signIn); if (signInButton.exists()) { signInButton.click(); // Set the username new UiObject(new UiSelector().className("android.widget.EditText").instance(0)).setText("username"); new UiObject(new UiSelector().className("android.widget.EditText").instance(1)).setText("password"); new UiObject(new UiSelector().className("android.widget.Button"). text("Sign In").instance(0)).click(); // Wait Sign in progress window getUiDevice().waitForWindowUpdate(null, 2000); // Wait for main window getUiDevice().waitForWindowUpdate(null, 30000); } new UiObject(new UiSelector().description("New tweet")).click(); // Typing text for a tweet new UiObject(new UiSelector().className("android.widget.LinearLayout").instance(8)). setText("Awesome #Testdroid!"); // Tweeting! new UiObject(new UiSelector().text("Tweet")).click();
官方網站:http://developer.android.com/tools/help/uiautomator/index.html
3.Espresso
Espresso是由Google開源的一款最新的Android自動化測試框架,有助於於開發人員和測試人員錘鍊出中意的使用者介面。Espresso的API體積小、可預見、簡單易學,構建在Android儀表框架的基礎上。使用它,能讓你快速編寫出簡潔可靠的Android UI測試。它支援API level 8級(Froyo)、10(Gingerbread),和15(Ice Cream Sandwich)及後續。
一方面它相當可靠,因為和UI執行緒是同步的,另一方面又非常之快,因為沒有任何睡眠的必要(當某個毫秒,應用程式空轉時,執行測試)。不過它同樣不支援web檢視。
Espresso的程式碼示例:
public void testEspresso() { // Check if view with the text 'Hello.' is shown onView(withText("Hello.")).check(matches(isDisplayed())); // R class ID identifier for 'Sign in' - and click it onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/sign_in", null, null))).perform(click()); // R class ID identifier for entering username onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/login_username", null, null))).perform((typeText("username"))); // R class ID identifier for entering password onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/login_password", null, null))).perform((typeText("password"))); // R class ID identifier for clicking log in onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/login_login", null, null))).perform(click()); // Activate the text field to compose a tweet onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/menu_compose_tweet", null, null))).perform(click()); // Type the tweet onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/edit", null, null))).perform((typeText(”#Testdroid"))); // Tweeting! onView(withId(getInstrumentation().getTargetContext().getResources() .getIdentifier("com.twitter.android:id/composer_post", null, null))).perform(click()); }
官方網站:https://code.google.com/p/android-test-kit/wiki/Espresso
4.Calabash
Calabash是一款跨平臺的自動化測試框架,支援Android和iOS原生和混合的應用程式。Calabash易於理解的語法,使得即使是非技術人員也可以在這兩個移動平臺上為app建立和執行自動化驗收測試。Calabash的測試描述於Cucumber,然後在執行時轉化為Robotium或Frank。它支援約80種不同的自然語言指令(控制器),並且可以使用Ruby和Java實現新的控制器。
Calabash的程式碼示例:
Feature: Login feature Scenario: As a valid user I can log into my app I wait for text "Hello" Then I press view with id "Sign in" Then I enter text "username" into "login_username" Then I enter text "password" into "login_password" Then I wait for activity "HomeTabActivity" Then I press view with id "menu_compose_tweet" Then I enter text "Testdroid" into field with id "edit" Then I press view with id "composer_post"
官方網站:http://calaba.sh/
5.Appium
Appium是一款移動的自動化測試框架(和工具),支援iOS和Android原生和混合的移動Web應用程式。它內部使用的JSONWireProtocol通過Selenium的WebDriver,來與iOS和Android應用進行互動。它通過uiautomator(API level 16或更高)和Seledroid(API level 低於16)支援Android,通過UI Automation支援iOS,還有Android和iOS都支援的移動web如Selenium driver。
Appium的最大優點在於你幾乎可以用任意一種程式語言(例如,Java、Objective-C、JavaScript、PHP、Ruby、Python和C#等)來編寫Appium指令碼而不必選擇工具,相容最重要的平臺(Android和iOS)而不必安裝和配置裝置適應測試等等。並且,如果你熟悉Selenium的話,那麼使用Appium用於移動app測試對你而言將是輕而易舉的一件事。因為它們使用相同的WebDriver,並且以同樣的方式使用DesiredCapabilities。所以Appium與Selenium在配置應用程式執行時有諸多相似之處。
Appium的程式碼示例:
# wait for hello sleep(3) textFields = driver.find_elements_by_tag_name('textField') assertEqual(textFields[0].get_attribute("value"), "Hello") # click sign-in button driver.find_elements_by_name('Sign in')[0].click() # find the text fields again, and enter username and password textFields = driver.find_elements_by_tag_name('textField') textFields[0].send_keys("twitter_username") textFields[1].send_keys("passw0rd") # click the Login button (the first button in the view) driver.find_elements_by_tag_name('button')[0].click() # sleep sleep(3) # click the first button with name "Compose" driver.find_elements_by_name('Compose')[0].click() # type in the tweet message driver.find_elements_by_tag_name('textField')[0].send_keys(”#Testdroid is awesome!") # press the Send button driver.find_elements_by_name('Send')[0].click() # exit driver.quit()
官方網站:http://appium.io/
總結
以上就是我們列出的5款最棒的測試框架,可用於日常的Android構建,創立和修改。當然,每一種框架都有其優勢和缺陷。Appium可以同時測試你的Android和iOS版本。但如果你是一個忠實的Android開發人員只開發安卓版本的app,那麼,使用Robotium就很不錯的。Testdroid Recorder還可為我們在生成測試指令碼節省大量的時間和金錢(這是免費的哦!)。因此,好好思考下你的測試需求——功能測試、相容性測試、UI測試等等——然後為自己選取最適合和最佳的Android測試框架。
譯文連結:http://www.codeceo.com/article/5-android-test-framework.html
英文原文:Top 5 Android Testing Frameworks (with Examples)
翻譯作者:碼農網 – 小峰
[ 轉載必須在正文中標註並保留原文連結、譯文連結和譯者等資訊。]
相關文章
- 5個最佳安卓測試框架(帶示例)安卓框架
- android 5個自動化測試Ui框架AndroidUI框架
- 5個示例帶你學習AngularJSAngularJS
- 3 個主流 PHP 框架的效能測試PHP框架
- 測試微服務的4個最佳實踐微服務
- FAutoTest一個 H5、小程式自動化測試框架H5框架
- 最受歡迎的5個Android ORM框架AndroidORM框架
- Jest基於dva框架的單元測試最佳實踐框架
- Android單元測試-作用以及簡單示例Android
- 一個簡單的介面測試框架 demo框架
- Android 效能測試之方向與框架篇Android框架
- 16個最佳響應式HTML5框架分享HTML框架
- 推薦五個好用的Python測試框架!Python框架
- 軟體測試框架——自動化測試框架框架
- 介面測試之基於LoadRunner的一個簡單示例
- [android]am自動化測試框架(原創)Android框架
- H5 自動化測試框架推薦H5框架
- 5 個 iOS 和 Android 最佳的開源自動化工具iOSAndroid
- Mini-Mesos:一個Mesos的測試基礎框架框架
- 8個超實用的Java測試工具和框架Java框架
- 多個開源的js補環境框架測試JS框架
- 前端測試框架前端框架
- 測試框架Jest框架
- 軟體開發和測試的 30 個最佳實踐
- 關於軟體測試的5個誤傳
- 全域性索引失效帶來的幾個測試場景索引
- Android單元測試-對Activity的測試Android
- Android單元測試-對View的測試AndroidView
- Android 3分鐘帶你入門開發測試Android
- Android的Junit測試Android
- 一張圖帶你玩轉H5測試……6大模組測試點彙總分享!H5
- 軟體測試中的5個實用原則
- 最受歡迎的 5 款 Node.js 端到端測試框架Node.js框架
- Java中的單元測試與整合測試最佳實踐Java
- hbase自帶的測試工具PerformanceEvaluationORM
- 前端測試框架 Jest前端框架
- 介面測試框架Requests框架
- 1個月5次發版:測試人的模組測試策略分類歸納