uiautomator实现控件查找与点击

Posted 爱炒饭

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了uiautomator实现控件查找与点击相关的知识,希望对你有一定的参考价值。

1、添加gralde依赖

    testImplementation 'junit:junit:4.13.2'
    androidTestImplementation 'androidx.test.ext:junit:1.1.3'
    androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
    androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'

2、androidTest目录添加单元测试代码

UiDevice就是uiautomator中的工具类

@RunWith(AndroidJUnit4.class)
public class ExampleInstrumentedTest
@Test
public void useAppContext()
UiDevice uiDevice = UiDevice.getInstance(getInstrumentation());
uiDevice.findObject(By.res(“com.android.launcher3:id/bubble_text”)).click();

以上是关于uiautomator实现控件查找与点击的主要内容,如果未能解决你的问题,请参考以下文章

Windows桌面程序自动化控制之uiautomation模块全面讲解

uiautomator怎么点击屏幕指定位置

Android自动化测试框架uiautomator2详解

腾讯TMQ当uiautomator遇到xpath和ocr,畅快

腾讯TMQ当uiautomator遇到xpath和ocr,畅快

uiautomator的xpath选择器