Android测试工具 UIAutomator入门与介绍(下)

简介:   UI Automator 测试工具定义以及用途

下面列举几个类的方法      


UiDevice


void    clearLastTraversedText()
// 清除上次UI遍历的事件
boolean click(int x, int y)
// 根据坐标点击
boolean drag(int startX, int startY, int endX, int endY, int steps)
// 拖动
void    dumpWindowHierarchy(File dest)
// dump当前的层次化结构到文件中
void    dumpWindowHierarchy(OutputStream out)
// dump当前的层次化结构到流中
void    dumpWindowHierarchy(String fileName)
// dump当前的层次化结构到文件中
UiObject2   findObject(BySelector selector)
// 根据BySelector查找
UiObject    findObject(UiSelector selector)
// 根据UiSelector 查找
List<UiObject2> findObjects(BySelector selector)
// 根据BySelector查找
void    freezeRotation()
// 冻结旋转的状态
String  getCurrentActivityName()
// 获取当前Activity的名字,已经被废弃
String  getCurrentPackageName()
// 获取当前package
int getDisplayHeight()
// Gets the height of the display, in pixels.
int getDisplayRotation()
// Returns the current rotation of the display, as defined in Surface
Point   getDisplaySizeDp()
// Returns the display size in dp (device-independent pixel) The returned display size is adjusted per screen rotation.
int getDisplayWidth()
// Gets the width of the display, in pixels.
static UiDevice getInstance()
// 获取一个对象
static UiDevice getInstance(Instrumentation instrumentation)
// Retrieves a singleton instance of UiDevice
String  getLastTraversedText()
// 获取上一次遍历的文本
String  getLauncherPackageName()
// 获取运行的packagename
String  getProductName()
// Retrieves the product name of the device.
boolean hasAnyWatcherTriggered()
// 检查是否有触发器触发
boolean hasObject(BySelector selector)
// 是否有符合的条件的
boolean hasWatcherTriggered(String watcherName)
// Checks if a specific registered UiWatcher has triggered.
boolean isNaturalOrientation()
// Check if the device is in its natural orientation.
boolean isScreenOn()
// Checks the power manager if the screen is ON.
boolean openNotification()
// Opens the notification shade.
// 打开通知
boolean openQuickSettings()
// 打开设置
<R> R   performActionAndWait(Runnable action, EventCondition<R> condition, long timeout)
// Performs the provided action and waits for the condition to be met.
boolean pressBack()
// Simulates a short press on the BACK button.
boolean pressDPadCenter()
// Simulates a short press on the CENTER button.
boolean pressDPadDown()
// Simulates a short press on the DOWN button.
boolean pressDPadLeft()
// Simulates a short press on the LEFT button.
boolean pressDPadRight()
// Simulates a short press on the RIGHT button.
boolean pressDPadUp()
// Simulates a short press on the UP button.
boolean pressDelete()
// Simulates a short press on the DELETE key.
boolean pressEnter()
// Simulates a short press on the ENTER key.
boolean pressHome()
// Simulates a short press on the HOME button.
boolean pressKeyCode(int keyCode)
// Simulates a short press using a key code.
boolean pressKeyCode(int keyCode, int metaState)
// Simulates a short press using a key code.
boolean pressMenu()
// Simulates a short press on the MENU button.
boolean pressRecentApps()
// Simulates a short press on the Recent Apps button.
boolean pressSearch()
// Simulates a short press on the SEARCH button.
void    registerWatcher(String name, UiWatcher watcher)
// Registers a UiWatcher to run automatically when the testing framework is unable to find a match using a UiSelector.
void    removeWatcher(String name)
// Removes a previously registered UiWatcher.
void    resetWatcherTriggers()
// Resets a UiWatcher that has been triggered.
void    runWatchers()
// This method forces all registered watchers to run.
void    setCompressedLayoutHeirarchy(boolean compressed)
// Enables or disables layout hierarchy compression.
void    setOrientationLeft()
// 设置旋转方向
void    setOrientationNatural()
// Simulates orienting the device into its natural orientation and also freezes rotation by disabling the sensors.
void    setOrientationRight()
// Simulates orienting the device to the right and also freezes rotation by disabling the sensors.
void    sleep()
// 关闭屏幕
boolean swipe(int startX, int startY, int endX, int endY, int steps)
// Performs a swipe from one coordinate to another using the number of steps to determine smoothness and speed.
boolean swipe(Point[] segments, int segmentSteps)
// Performs a swipe between points in the Point array.
boolean takeScreenshot(File storePath, float scale, int quality)
// 截屏
boolean takeScreenshot(File storePath)
// Take a screenshot of current window and store it as PNG Default scale of 1.0f (original size) and 90% quality is used The screenshot is adjusted per screen rotation
void    unfreezeRotation()
// Re-enables the sensors and un-freezes the device rotation allowing its contents to rotate with the device physical rotation.
<R> R   wait(SearchCondition<R> condition, long timeout)
// Waits for given the condition to be met.
void    waitForIdle(long timeout)
// Waits for the current application to idle.
void    waitForIdle()
// Waits for the current application to idle.
boolean waitForWindowUpdate(String packageName, long timeout)
// Waits for a window content update event to occur.
void    wakeUp()
// 点亮屏幕


UiObject


void    clearTextField()
// 清空输入接口
boolean click()
// 点击
boolean clickAndWaitForNewWindow()
// 点击并等待新界面
boolean clickAndWaitForNewWindow(long timeout)
// 点击并等待新界面,设置等待时间
boolean clickBottomRight()
// 点击右下边
boolean clickTopLeft()
// Clicks the top and left corner of the UI element
boolean dragTo(UiObject destObj, int steps)
// 拖动
boolean dragTo(int destX, int destY, int steps)
// Drags this object to arbitrary coordinates.
boolean exists()
// 判断是否存在
Rect    getBounds()
// 返回边界
UiObject    getChild(UiSelector selector)
// 根据条件获取子元素
int getChildCount()
// 获取子元素数量
String  getClassName()
// 获取当前元素的class name
String  getContentDescription()
// Reads the content_desc property of the UI element
UiObject    getFromParent(UiSelector selector)
// Creates a new UiObject for a sibling view or a child of the sibling view, relative to the present UiObject.
String  getPackageName()
// Reads the view's package property
final UiSelector    getSelector()
// Debugging helper.
String  getText()
// Reads the text property of the UI element
Rect    getVisibleBounds()
// 获取可见边界
boolean isCheckable()
// 是否可以点击
boolean isChecked()
// 是否已经选中
boolean isClickable()
// Checks if the UI element's clickable property is currently true.
boolean isEnabled()
// Checks if the UI element's enabled property is currently true.
boolean isFocusable()
// Check if the UI element's focusable property is currently true.
boolean isFocused()
// Check if the UI element's focused property is currently true
boolean isLongClickable()
// Check if the view's long-clickable property is currently true
boolean isScrollable()
// Check if the view's scrollable property is currently true
boolean isSelected()
// Checks if the UI element's selected property is currently true.
boolean longClick()
// 长按
boolean longClickBottomRight()
// Long clicks bottom and right corner of the UI element
boolean longClickTopLeft()
// Long clicks on the top and left corner of the UI element
boolean performMultiPointerGesture(PointerCoords... touches)
// Performs a multi-touch gesture.
boolean performTwoPointerGesture(Point startPoint1, Point startPoint2, Point endPoint1, Point endPoint2, int steps)
// Generates a two-pointer gesture with arbitrary starting and ending points.
boolean pinchIn(int percent, int steps)
// Performs a two-pointer gesture, where each pointer moves diagonally toward the other, from the edges to the center of this UiObject .
boolean pinchOut(int percent, int steps)
// Performs a two-pointer gesture, where each pointer moves diagonally opposite across the other, from the center out towards the edges of the this UiObject.
boolean setText(String text)
// 设置输入内容
boolean swipeDown(int steps)
// Performs the swipe down action on the UiObject.
boolean swipeLeft(int steps)
// Performs the swipe left action on the UiObject.
boolean swipeRight(int steps)
// Performs the swipe right action on the UiObject.
boolean swipeUp(int steps)
// Performs the swipe up action on the UiObject.
boolean waitForExists(long timeout)
// Waits a specified length of time for a view to become visible.
boolean waitUntilGone(long timeout)
// Waits a specified length of time for a view to become undetectable.


下面给大家展示一个UiAutomator的testcase


package cn.cool;
import com.android.uiautomator.testrunner.UiAutomatorTestCase;
import android.os.RemoteException;
public class Testone extends UiAutomatorTestCase {
   @Override
    protected void setUp() throws Exception {
        super.setUp();
    }
    public void testCool() throws RemoteException, InterruptedException {
    }
    @Override
    protected void tearDown() throws Exception {
    }
}


然后我们可以在实际的项目中,去实现我们真实的业务的代码。


实现完毕呢,

我们就可以用 adb . shell push cool.jar /data/local/tmp/

然后使用


adb shell uiautomator runtest cool.jar -c cn.cool.Testone


就可以执行了。uiautomator 由于只能打成jar包,所以它不能直接在编辑器上进行调试。

相关文章
|
3月前
|
测试技术 持续交付 开发者
探索自动化测试的无限可能:从入门到精通
在软件开发领域,确保产品质量是至关重要的。自动化测试作为一种高效、可靠的测试方法,正逐渐成为行业标准。本文将带你深入了解自动化测试的世界,从基础概念到实践技巧,帮助你掌握这一强大的工具。无论你是初学者还是有经验的开发者,都能从中获得宝贵的知识和启发。
|
3月前
|
Java 测试技术 开发者
初学者入门:掌握单元测试的基础与实践
【10月更文挑战第14天】单元测试是一种软件测试方法,它验证软件中的最小可测试单元——通常是单独的函数或类——是否按预期工作。单元测试的目标是确保每个模块在其自身范围内正确无误地运行。这些测试应该独立于其他模块,并且应该能够反复执行而不受外部环境的影响。
76 2
|
2月前
|
Java 测试技术 持续交付
【入门思路】基于Python+Unittest+Appium+Excel+BeautifulReport的App/移动端UI自动化测试框架搭建思路
本文重点讲解如何搭建App自动化测试框架的思路,而非完整源码。主要内容包括实现目的、框架设计、环境依赖和框架的主要组成部分。适用于初学者,旨在帮助其快速掌握App自动化测试的基本技能。文中详细介绍了从需求分析到技术栈选择,再到具体模块的封装与实现,包括登录、截图、日志、测试报告和邮件服务等。同时提供了运行效果的展示,便于理解和实践。
129 4
【入门思路】基于Python+Unittest+Appium+Excel+BeautifulReport的App/移动端UI自动化测试框架搭建思路
|
2月前
|
XML 数据库 Android开发
探索Android开发:从入门到精通的旅程
在这篇文章中,我们将一起踏上一段激动人心的旅程,通过深入浅出的方式,解锁Android开发的秘密。无论你是编程新手还是有经验的开发者,本文都将为你提供宝贵的知识和技能,帮助你构建出色的Android应用。我们将从基础概念开始,逐步深入到高级技巧和最佳实践,最终实现从初学者到专家的转变。让我们开始吧!
52 3
|
2月前
|
Java 测试技术 Android开发
探索自动化测试的奥秘:从入门到精通
【10月更文挑战第37天】本文将带你进入自动化测试的世界,从基础知识到实战案例,逐步揭示自动化测试的神秘面纱。我们将一起探讨如何利用代码来简化测试过程,提高效率,并确保软件质量。无论你是初学者还是有经验的开发者,这篇文章都能为你提供有价值的见解和技巧。让我们一起踏上这段探索之旅吧!
|
2月前
|
机器学习/深度学习 自然语言处理 前端开发
前端神经网络入门:Brain.js - 详细介绍和对比不同的实现 - CNN、RNN、DNN、FFNN -无需准备环境打开浏览器即可测试运行-支持WebGPU加速
本文介绍了如何使用 JavaScript 神经网络库 **Brain.js** 实现不同类型的神经网络,包括前馈神经网络(FFNN)、深度神经网络(DNN)和循环神经网络(RNN)。通过简单的示例和代码,帮助前端开发者快速入门并理解神经网络的基本概念。文章还对比了各类神经网络的特点和适用场景,并简要介绍了卷积神经网络(CNN)的替代方案。
207 1
|
3月前
|
测试技术 网络安全
什么是软件测试? 软件测试都有什么岗位 ?软件测试和调试的区别? 软件测试和开发的区别? 一位优秀的测试人员应该具备哪些素质? 软件测试等相关概念入门篇
文章全面介绍了软件测试的基本概念、目的、岗位分类、与开发和调试的区别,并阐述了成为优秀测试人员应具备的素质和技能。
322 1
什么是软件测试? 软件测试都有什么岗位 ?软件测试和调试的区别? 软件测试和开发的区别? 一位优秀的测试人员应该具备哪些素质? 软件测试等相关概念入门篇
|
3月前
|
存储 前端开发 测试技术
Android kotlin MVVM 架构简单示例入门
Android kotlin MVVM 架构简单示例入门
48 1
|
4月前
|
Java 测试技术 Android开发
Android性能测试——发现和定位内存泄露和卡顿
本文详细介绍了Android应用性能测试中的内存泄漏与卡顿问题及其解决方案。首先,文章描述了使用MAT工具定位内存泄漏的具体步骤,并通过实例展示了如何分析Histogram图表和Dominator Tree。接着,针对卡顿问题,文章探讨了其产生原因,并提供了多种测试方法,包括GPU呈现模式分析、FPS Meter软件测试、绘制圆点计数法及Android Studio自带的GPU监控功能。最后,文章给出了排查卡顿问题的四个方向,帮助开发者优化应用性能。
244 4
Android性能测试——发现和定位内存泄露和卡顿
|
2月前
|
XML IDE Java
安卓应用开发入门:从零开始的旅程
【10月更文挑战第23天】本文将带领读者开启一段安卓应用开发的奇妙之旅。我们将从最基础的概念讲起,逐步深入到开发实践,最后通过一个简易的代码示例,展示如何将理论知识转化为实际的应用。无论你是编程新手,还是希望扩展技能的软件工程师,这篇文章都将为你提供有价值的指导和启发。
41 0
下一篇
开通oss服务