Android Studio 3.0+ Record Espresso Test 自動化測試

来源:https://www.cnblogs.com/94xiyang/archive/2019/06/22/11068928.html
-Advertisement-
Play Games

準備工作 1.將android studio 版本升級到3.0+2.百度下載夜神模擬器 夜神模擬器的基本設置 PS:以上就是夜神模擬器的基本設置 Android Studio 連接夜神模擬器 開始錄製自動測試代碼 PS:操作模擬器 -> Record Your Test 彈框將自動生成你的行為代碼 ...


準備工作

1.將android studio 版本升級到3.0+
2.百度下載夜神模擬器


夜神模擬器的基本設置

 

 

 

 

PS:以上就是夜神模擬器的基本設置

Android Studio 連接夜神模擬器

//夜神模擬器預設的地址
adb connect 127.0.0.1:62001

 

開始錄製自動測試代碼

在頂部工具欄找到Run -> Record Espresso Test -> 選擇夜神模擬器雙擊啟動 -> 啟動後界面如下圖

 

PS:操作模擬器 -> Record Your Test 彈框將自動生成你的行為代碼 -> 點擊OK -> 命名並保存代碼(可以一個頁面一個頁面的錄製,然後生成一份一份的測試腳本)

運行自動化測試腳本

PS:靜待安裝,然後模擬器會自動執行你錄製的動作,Logcat可以查看日誌


貼上一份 Record Espresso Test的腳本看看

package com.example.administrator.teagarden.activity.login;


import android.support.test.espresso.ViewInteraction;
import android.support.test.filters.LargeTest;
import android.support.test.rule.ActivityTestRule;
import android.support.test.runner.AndroidJUnit4;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewParent;
import com.example.administrator.teagarden.R;
import org.hamcrest.Description;
import org.hamcrest.Matcher;
import org.hamcrest.TypeSafeMatcher;
import org.junit.Rule;
import org.junit.Test;
import org.junit.runner.RunWith;
import static android.support.test.espresso.Espresso.onView;
import static android.support.test.espresso.action.ViewActions.click;
import static android.support.test.espresso.action.ViewActions.closeSoftKeyboard;
import static android.support.test.espresso.action.ViewActions.replaceText;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withClassName;
import static android.support.test.espresso.matcher.ViewMatchers.withId;
import static android.support.test.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.Matchers.allOf;
import static org.hamcrest.Matchers.is;

@LargeTest
@RunWith(AndroidJUnit4.class)
public class SplashActivityTest {

    @Rule
    public ActivityTestRule<SplashActivity> mActivityTestRule = new ActivityTestRule<>(SplashActivity.class);

    @Test
    public void splashActivityTest() {
        // Added a sleep statement to match the app's execution delay.
        // The recommended way to handle such scenarios is to use Espresso idling resources:
        // https://google.github.io/android-testing-support-library/docs/espresso/idling-resource/index.html
        try {
            Thread.sleep(6000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        ViewInteraction appCompatEditText = onView(
                allOf(withId(R.id.login_edit_user),
                        childAtPosition(
                                childAtPosition(
                                        withClassName(is("android.widget.LinearLayout")),
                                        2),
                                0),
                        isDisplayed()));
        appCompatEditText.perform(click());

        ViewInteraction appCompatEditText2 = onView(
                allOf(withId(R.id.login_edit_user),
                        childAtPosition(
                                childAtPosition(
                                        withClassName(is("android.widget.LinearLayout")),
                                        2),
                                0),
                        isDisplayed()));
        appCompatEditText2.perform(replaceText("152****3478"), closeSoftKeyboard());

        ViewInteraction appCompatEditText3 = onView(
                allOf(withId(R.id.login_edit_mima),
                        childAtPosition(
                                allOf(withId(R.id.logint_edit_layout),
                                        childAtPosition(
                                                withClassName(is("android.widget.LinearLayout")),
                                                4)),
                                0),
                        isDisplayed()));
        appCompatEditText3.perform(replaceText("admin000"), closeSoftKeyboard());

        ViewInteraction appCompatButton = onView(
                allOf(withId(R.id.login_button), withText("登錄"),
                        childAtPosition(
                                childAtPosition(
                                        withClassName(is("android.widget.RelativeLayout")),
                                        1),
                                2),
                        isDisplayed()));
        appCompatButton.perform(click());

        // Added a sleep statement to match the app's execution delay.
        // The recommended way to handle such scenarios is to use Espresso idling resources:
        // https://google.github.io/android-testing-support-library/docs/espresso/idling-resource/index.html
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        ViewInteraction radioButton = onView(
                allOf(withId(R.id.main_home_radio2), withText("監控"),
                        childAtPosition(
                                allOf(withId(R.id.main_tab_group),
                                        childAtPosition(
                                                withClassName(is("android.widget.LinearLayout")),
                                                0)),
                                1),
                        isDisplayed()));
        radioButton.perform(click());

        // Added a sleep statement to match the app's execution delay.
        // The recommended way to handle such scenarios is to use Espresso idling resources:
        // https://google.github.io/android-testing-support-library/docs/espresso/idling-resource/index.html
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
        
        ViewInteraction radioButton2 = onView(
                allOf(withId(R.id.main_home_radio3), withText("動態"),
                        childAtPosition(
                                allOf(withId(R.id.main_tab_group),
                                        childAtPosition(
                                                withClassName(is("android.widget.LinearLayout")),
                                                0)),
                                2),
                        isDisplayed()));
        radioButton2.perform(click());

        // Added a sleep statement to match the app's execution delay.
        // The recommended way to handle such scenarios is to use Espresso idling resources:
        // https://google.github.io/android-testing-support-library/docs/espresso/idling-resource/index.html
        try {
            Thread.sleep(3000);
        } catch (InterruptedException e) {
            e.printStackTrace();
        }

        ViewInteraction radioButton3 = onView(
                allOf(withId(R.id.main_home_radio4), withText("我的"),
                        childAtPosition(
                                allOf(withId(R.id.main_tab_group),
                                        childAtPosition(
                                                withClassName(is("android.widget.LinearLayout")),
                                                0)),
                                3),
                        isDisplayed()));
        radioButton3.perform(click());
    }

    private static Matcher<View> childAtPosition(
            final Matcher<View> parentMatcher, final int position) {

        return new TypeSafeMatcher<View>() {
            @Override
            public void describeTo(Description description) {
                description.appendText("Child at position " + position + " in parent ");
                parentMatcher.describeTo(description);
            }

            @Override
            public boolean matchesSafely(View view) {
                ViewParent parent = view.getParent();
                return parent instanceof ViewGroup && parentMatcher.matches(parent)
                        && view.equals(((ViewGroup) parent).getChildAt(position));
            }
        };
    }
}

ps:代碼其實很簡單,照搬照套,還有別的花樣麽...錄製的時候,也就是操作模擬器,生成代碼的時候有點卡....有沒有人告訴我怎麼解決?

 


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 在表中,想把其中2列或多列作為組合主鍵。 CREATE TABLE [dbo].[T3] ( [col1] NVARCHAR(10) NOT NULL, [col2] NVARCHAR(10) NOT NULL, [col3] NVARCHAR(10) NULL, [col4] NVARCHAR(1 ...
  • ``` !/bin/bash ==================================== MySQL定時備份 MySQL timed backup ==================================== DUMP=/usr/bin/mysqldump IPADDR=1 ...
  • 大數據為大家整理了Ofer Mendelevitch自己的觀點。 Mendelevitch認為無論是Java程式員還是業務分析師都有機會成為數據科學家,以下是他對不同人群給出的具體建議: Java程式員 作為Java開發者,你對軟體工程的規則已經瞭然於心,第一步需要瞭解機器學習的各種演算法:現在有哪些 ...
  • 下載mysql: 1 https://dev.mysql.com/downloads/mysql/ 如圖: 然後在解壓的文件夾裡面新建 my.ini文件,內容如下 按 Ctrl+C 複製代碼 按 Ctrl+C 複製代碼 # 設置mysql的安裝目錄 basedir=C:\web\mysql-8.0. ...
  • 恢復內容開始 1.首先安裝homebrew,已有就跳過 2.下載安裝mongodb 3.配置mongodb 4.啟動mognodb ...
  • 1、MyISAM:預設表類型,它是基於傳統的ISAM類型,ISAM是Indexed Sequential Access Method (有索引的順序訪問方法) 的縮寫,它是存儲記錄和文件的標準方法。不是事務安全的,而且不支持外鍵,如果執行大量的select,insert MyISAM比較適合。 2、 ...
  • 問題:有時已有項目要移植,例如原來在廣州地區使用的某系統,突然說惠州那邊也要用這套一樣的系統。或者,在demo環境下弄了一些測試數據。然後要清空全部表數據。如果表比較多的話,逐個表手工編寫腳本就太麻煩了。 解決方案:本博主就教教大家怎麼僅用一個簡單語句快速刪除全庫各表數據,全部清空數據。使用系統存儲 ...
  • Github和碼雲等托管平臺的憑據 ps:如果你修改了某個代碼托管平臺的密碼,那麼android studio 就不能拉取和上傳代碼了。需要重新驗證,也就是修改憑據 GitHub打不開怎麼辦? ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...