zoukankan      html  css  js  c++  java
  • UiAutoMator一些常用的方法

    常用查找UiObject方法

    // 通过ID查找
    public static UiObject findById(String text)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(text));
    return appBtn;

    }

    例如:UiObject search_src_text =findById("com.android.contacts:id/search_view")



    // 通过resource和description查找
    public static UiObject findByResourceIdAndDesc(String className, String text)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(className)
    .description(text));
    return appBtn;

    }

    例如:UiObject back_camera = findByResourceIdAndDesc(
    "com.android.camera2:id/camera_toggle_button","Play video");



    // 按Text Contains定位
    public static UiObject findByTextContains(String text) {
    UiObject getItem = new UiObject(new UiSelector().textContains(text));
    return getItem;

    }

    例如:UiObject notice = findByTextContains("Remember photo locations");



    // 通过resource和index查找
    public static UiObject findByResourceIdAndIndex(String className, int index)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(className)
    .index(index));
    return appBtn;

    }

    例如:UiObject back_camera = findByResourceIdAndIndex(
    "com.android.camera2:id/camera_toggle_button",0);



    // 通过ID,instance查找
    public static UiObject findByIdInStance(String text, int index)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(text)
    .instance(index));
    return appBtn;

    }

    例如:UiObject back_camera = findByIdInStance(
    "com.android.camera2:id/camera_toggle_button",1);



    // 按照className查找UiScrollable;
    public static UiScrollable findUiScrollableByClassName(String className)
    throws UiObjectNotFoundException {
    UiScrollable scrItem = new UiScrollable(
    new UiSelector().className(className));
    return scrItem;
    }


    // 通过source和text查找
    public static UiObject findByResourceIdAndText(String text1, String text2)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(text1).text(
    text2));
    return appBtn;

    }

    例如:UiObject mode = findByResourceIdAndText(
    "com.android.camera2:id/selector_text", "text");


    // 通过source和text查找
    public static UiObject findByResourceIdAndTextContains(String resourceId, String textContains)
    throws UiObjectNotFoundException {
    UiObject appBtn = new UiObject(new UiSelector().resourceId(resourceId).textContains(
    textContains));
    return appBtn;

    }

    例如:UiObject mode = findByResourceIdAndTextContains(
    "com.android.camera2:id/selector_text", "text");



    // 按照className和index在UiScrollable中查找
    public static UiScrollable findUiScrollableByClassNameAndInstance(
    UiScrollable uiScrollable, String className, int index)
    throws UiObjectNotFoundException {
    UiScrollable scrItem = new UiScrollable(new UiSelector().className(
    className).instance(index));
    return scrItem;

    }



    // 获取UiCollection中的子对象的个数
    public static int findChildCountFromUiCollectionByClassName(
    UiCollection uiCollection, String className)
    throws UiObjectNotFoundException {
    return uiCollection
    .getChildCount(new UiSelector().className(className));
    }


    // 在UiScrollable中通过className和instance查找
    public static UiObject findFromUiScrollableByClassNameAndInstance(
    UiScrollable uiScrollable, String className, int index)
    throws UiObjectNotFoundException {
    return uiScrollable.getChild(new UiSelector().className(className)
    .index(index));
    }


    // 按className定位Scrollable
    public static UiScrollable findScrollableByClass(String className) {
    return new UiScrollable(new UiSelector().className(className));
    }

  • 相关阅读:
    如何定义开发完成?(Definition of Done)
    Git协同工作流介绍
    Git常用命令拾遗
    搭建基于Docker社区版的Kubernetes本地集群
    Mqtt学习指南
    JavaWeb 学习总结
    异常:org.apache.ibatis.exceptions.PersistenceException: ### Error querying database. Cause: com.mysql.jdbc.exceptions.jdbc4.CommunicationsException: Communications link failure
    MySQL 插入中文错误:java.sql.SQLException: Incorrect string value:
    Servlet 中文乱码问题解析及详细解决方法
    常用正则表达式
  • 原文地址:https://www.cnblogs.com/decode1234/p/9160808.html
Copyright © 2011-2022 走看看