码迷,mamicode.com
首页 > 移动开发 > 详细

Android无线测试之—UiAutomator UiSelector API介绍之三

时间:2015-06-06 00:20:01      阅读:192      评论:0      收藏:0      [点我收藏+]

标签:

四种匹配关系介绍

一、四种匹配关系介绍:

技术分享

二、举例:

匹配字符串   0123456789

1、完全匹配: 0123456789

2、包含匹配: 45678、456、678

3、正则匹配: \d{10}

4、起始匹配: 012、01234、01234567

三、程序举例:

技术分享
package com.testuiselector;

import com.android.uiautomator.core.UiObject;
import com.android.uiautomator.core.UiObjectNotFoundException;
import com.android.uiautomator.core.UiSelector;
import com.android.uiautomator.testrunner.UiAutomatorTestCase;

public class Demo1 extends UiAutomatorTestCase {

    /**
     * @param args
     */
    public static void main(String[] args) {
        // TODO Auto-generated method stub
        String jarName, testClass, testName, androidId;
        jarName="demo1";
        testClass="com.testuiselector.Demo1";
        testName="testMatch";
        androidId="1";
        new UiAutomatorHelper(jarName, testClass, testName, androidId);
    }
        
    public void testSelector() throws UiObjectNotFoundException{
        //UiSelector l=new UiSelector().text("People"); //完全匹配
        //UiSelector l=new UiSelector().textContains("ople");
        //UiSelector l=new UiSelector().textMatches(".*opl.*");
        UiSelector l=new UiSelector().textStartsWith("peo");
        UiObject people=new UiObject(l);
        people.click();
    }

}
Demo1.java

 

Android无线测试之—UiAutomator UiSelector API介绍之三

标签:

原文地址:http://www.cnblogs.com/fsw-blog/p/4555806.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!