Android无线测试之—UiAutomator UiSelector API介绍之五
对象搜索—文本与描述
一、文本属性定位对象:
返回值 | API | 描述 |
UiSelector | test(String text) | 文本完全匹配 |
UiSelector | testContains(String text) | 文本包含匹配 |
UiSelector | textMatches(String regex) | 文本正则匹配 |
UiSelector | textStartsWith(String text) | 文本起始匹配 |
二、描述属性定位对象:
返回值 | API | 描述 |
UiSelector | description(String desc) | 描述完全匹配 |
UiSelector | descriptionContains(String desc) | 描述包含匹配 |
UiSelector | descriptionMatches(String regex) | 描述正则匹配 |
UiSelector | descriptionStartsWith(String desc) | 描述开始字符匹配 |
三、API应用举例:
package com.testuiselector; import com.android.uiautomator.core.UiDevice; 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="testText"; androidId="1"; new UiAutomatorHelper(jarName, testClass, testName, androidId); } public void testText() throws UiObjectNotFoundException{ UiDevice.getInstance().pressHome(); sleep(2000); UiSelector l1=new UiSelector().text("People"); UiObject people1=new UiObject(l1); people1.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l2=new UiSelector().textContains("ople"); UiObject people2=new UiObject(l2); people2.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l3=new UiSelector().textMatches(".*opl.*"); UiObject people3=new UiObject(l3); people3.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l4=new UiSelector().textStartsWith("peo"); UiObject people4=new UiObject(l4); people4.click(); sleep(2000); UiDevice.getInstance().pressBack(); } public void testDescription() throws UiObjectNotFoundException{ UiDevice.getInstance().pressHome(); sleep(2000); UiSelector l1=new UiSelector().description("Apps"); UiObject desc1=new UiObject(l1); desc1.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l2=new UiSelector().descriptionContains("pp"); UiObject desc2=new UiObject(l2); desc2.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l3=new UiSelector().descriptionMatches(".*pp.*"); UiObject desc3=new UiObject(l3); desc3.click(); sleep(2000); UiDevice.getInstance().pressBack(); sleep(2000); UiSelector l4=new UiSelector().descriptionStartsWith("Ap"); UiObject desc4=new UiObject(l4); desc4.click(); sleep(2000); UiDevice.getInstance().pressBack(); } }
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。