Uiautomator的配置与使用

  1. 新建测试工程

    UiTest-->

    导入android.jar uiautoator.jar  junit.jar

    新建testcase类:

public class Test extends UiAutomatorTestCase {   
   public void testDemo() throws UiObjectNotFoundException {   

      // Simulate a short press on the HOME button.
      getUiDevice().pressHome();
   }
}
2.创建build.xml文件

cmd->>D:\Program Files\adt-bundle-windows-x86-20131030\sdk\tools>android create uitest-project -n UiTest -t 1 -p D:\project\eclipse--java\UiTest

刷新UiTest工程,双击build.xml 修改  <project name="Uiautomator" default="help"> 中的 help为bulid,保存即可.

接下来就可以又键进行ant build 在UiTest工程的bin目录下会生成UiTest.jar

3.push jar到手机,用uiautomator 执行

cmd->>adb push UiTest.jar /data/local/tmp

-->>adb shell uiautomator runtest Uitest.jar -c com.UiTest.Test

你可能感兴趣的:(Uiautomator的配置与使用)