Android App开发的自动化测试框架UI Automator使用教程

Android的自动化测试有很多框架,其中ui automator是google官方提供的黑盒UI相关的自动化测试工具,(GitHub主页:case使用java写,今天实践了一下官方文档中样例程序,其中还是有一些小问题需要总结一下的。
环境准备:
1.JDK(是的,你没看错,基础的android开发环境必备),以及对应的环境变量配置,不会的可以自己百度下下
2.Android Studio(IDE尊崇个人意愿)
3.android SDK以及配置
4.ANT(主要用于build我们的脚本,生成jar包)
ant的搭建主要分几步:
1.下载ant安装文件并且解压安装;
2.新建系统环境变量ANT_HOME,参数值是你的ant安装目录;
3.在Path环境变量中添加ant安装目录的bin文件夹,比如我的就是C:\cod\apache-ant-1.9.6\bin
4.配置完以后,测试一下,在命令行下输入ant -version,如果显示你所安装的ant版本信息,证明环境变量配置成功

使用流程
1、使用ADT创建一个java的项目
在创建项目的时候要加上JUnit与你使用的Android platforms中对应的android.jar与uiautomator.jar

2016711171444606.png (638×286)

2、新建一个包(我这里就只叫com)
3、再这个包下创建一个class,输入以下java代码,代码全是官方文档上的代码,除了最上面的package

package com;

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

public class Runer extends UiAutomatorTestCase {  

  public void testDemo() throws UiObjectNotFoundException {  
   
   // Simulate a short press on the HOME button.
   getUiDevice().pressHome();
   
   // We're now in the home screen. Next, we want to simulate 
   // a user bringing up the All Apps screen.
   // If you use the uiautomatorviewer tool to capture a snapshot 
   // of the Home screen, notice that the All Apps button's 
   // content-description property has the value “Apps”. We can 
   // use this property to create a UiSelector to find the button. 
   UiObject allAppsButton = new UiObject(new UiSelector()
     .description("Apps"));
   
   // Simulate a click to bring up the All Apps screen.
   allAppsButton.clickAndWaitForNewWindow();
   
   // In the All Apps screen, the Settings app is located in 
   // the Apps tab. To simulate the user bringing up the Apps tab,
   // we create a UiSelector to find a tab with the text 
   // label “Apps”.
   UiObject appsTab = new UiObject(new UiSelector()
     .text("Apps"));
   
   // Simulate a click to enter the Apps tab.
   appsTab.click();

   // Next, in the apps tabs, we can simulate a user swiping until
   // they come to the Settings app icon. Since the container view 
   // is scrollable, we can use a UiScrollable object.
   UiScrollable appViews = new UiScrollable(new UiSelector()
     .scrollable(true));
   
   // Set the swiping mode to horizontal (the default is vertical)
   appViews.setAsHorizontalList();
   
   // Create a UiSelector to find the Settings app and simulate   
   // a user click to launch the app. 
   UiObject settingsApp = appViews.getChildByText(new UiSelector()
     .className(android.widget.TextView.class.getName()), 
     "Settings");
   settingsApp.clickAndWaitForNewWindow();
   
   // Validate that the package name is the expected one
   UiObject settingsValidation = new UiObject(new UiSelector()
     .packageName("com.android.settings"));
   assertTrue("Unable to detect Settings", 
     settingsValidation.exists()); 
   UiObject reportBug = new UiObject(new UiSelector().text("Sound"));
   reportBug.clickAndWaitForNewWindow();
   UiObject soundValidation = new UiObject(new UiSelector()
   .text("Volumes"));
  assertTrue("Unable to detect Sound", 
      soundValidation.exists()); 
   
   getUiDevice().pressHome();
   
 }  
}


4、使用ant工具生成build.xml
我这里在使用ADT自已的ant插件时提示

build.xml:26: Class not found: javac1.8

网上查了查,是插件与我java环境不符,下载最新的ant插件就可以了http://ant.apache.org/bindownload.cgi

2016711171556435.png (540×271)

下载这个tar.gz包,解压,然后将apache-ant-1.9.4\bin目录添加到环境变量PATH中
然后cmd到android sdk的tools目录,使用andrlid list命令,记住你将要在模拟器中运行的(也是你刚刚导入android.jar与uiautomator.jar包时所在的platforms)
在cmd下使用

android create uitest-project -n <name> -t <android-sdk-ID> -p <path>

-n 为生成的jar包名称,自已任意定义,
-t 为上面查看到的值,我这里是1
-p 为输出路径,这里就是刚才创建的java项目所在的路径

android create uitest-project -n AutoRunner -t 1 -p D:\myAndroidStudy\androidTest

然后再cmd进入D:\myAndroidStudy\androidTest,使用ant build命令生成AutoRunner.jar文件
5、将这个AutoRunner.jar文件push到模拟器中

adb push AutoRunner.jar /data/local/tmp

6、使用

adb shell uiautomator runtest AutoRunner.jar –c com.Runer 

使Runer类运行

2016711171651759.png (654×321)

我的代码里又在官方基础上多了一个点击”sound”的操作与点击Home键操作

 UiObject reportBug = new UiObject(new UiSelector().text("Sound"));
   reportBug.clickAndWaitForNewWindow();
   UiObject soundValidation = new UiObject(new UiSelector()
   .text("Volumes"));
  assertTrue("Unable to detect Sound", 
      soundValidation.exists()); 
   
   getUiDevice().pressHome();
 image

2016711171931815.png (517×470)

这个其实也只是一个简单的玩具代码,没有什么意义,但是官方作为一个引导,其中也使用了一些最常见的接口。以后再深入的学习uiautomator

总结
优点:
1.可以对所有操作进行自动化,操作简单;
2.不需要对被测程序进行重签名,且,可以测试所有设备上的程序,比如~某APP,比如~拨号,比如~发信息等等
3.对于控件定位,要比robotium简单一点点
缺点:
1.uiautomator需要android level 16以上才可以使用,因为在level 16及以上的API里面才带有uiautomator工具
2.如果想要使用resource-id定位控件,则需要level 18及以上才可以
3.对中文支持不好(不代表不支持,第三方jar可以实现)
4.个人感觉,控件定位不如robotium那样层级分明,仅仅个人感觉,用户行为注入还是和插桩有点点区别的

​现在我也找了很多测试的朋友,做了一个分享技术的交流群,共享了很多我们收集的技术文档和视频教程。
如果你不想再体验自学时找不到资源,没人解答问题,坚持几天便放弃的感受
可以加入我们一起交流。而且还有很多在自动化,性能,安全,测试开发等等方面有一定建树的技术大牛
分享他们的经验,还会分享很多直播讲座和技术沙龙
可以免费学习!划重点!开源的!!!
qq群号:485187702【暗号:csdn11】

最后感谢每一个认真阅读我文章的人,看着粉丝一路的上涨和关注,礼尚往来总是要有的,虽然不是什么很值钱的东西,如果你用得到的话可以直接拿走! 希望能帮助到你!【100%无套路免费领取】

  • 20
    点赞
  • 18
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
UiAutomatorAndroid平台自带的测试框架,可以用于编写Android应用程序的UI自动化测试用例。以下是编写app自动化的一般步骤: 1. 首先,需要在Android Studio中创建一个新的项目并选择“空活动”。 2. 接下来,需要在项目中添加所需的依赖项。可以在build.gradle文件中添加以下依赖项: ```groovy dependencies { androidTestImplementation 'com.android.support.test.uiautomator:uiautomator-v18:2.1.3' } ``` 3. 创建一个测试类,并导入必要的类: ```java import androidx.test.core.app.ActivityScenario; import androidx.test.espresso.matcher.ViewMatchers; import androidx.test.ext.junit.runners.AndroidJUnit4; import androidx.test.uiautomator.By; import androidx.test.uiautomator.UiDevice; import androidx.test.uiautomator.UiObject2; import androidx.test.uiautomator.UiSelector; import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; import static androidx.test.espresso.Espresso.onView; import static androidx.test.espresso.action.ViewActions.click; import static androidx.test.espresso.matcher.ViewMatchers.withId; import static org.hamcrest.Matchers.notNullValue; import static org.junit.Assert.assertThat; ``` 4. 编写测试用例,并使用UiDevice类与应用程序进行交互。例如,下面的示例代码将启动应用程序并单击按钮: ```java @RunWith(AndroidJUnit4.class) public class MainActivityTest { private UiDevice mDevice; @Before public void setUp() throws Exception { mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation()); mDevice.pressHome(); // Wait for launcher final String launcherPackageName = mDevice.getLauncherPackageName(); assertThat(launcherPackageName, notNullValue()); mDevice.wait(Until.hasObject(By.pkg(launcherPackageName).depth(0)), 5000); // Launch the app Context context = InstrumentationRegistry.getInstrumentation().getContext(); final Intent intent = context.getPackageManager().getLaunchIntentForPackage("com.example.myapp"); intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK); context.startActivity(intent); // Wait for the app to appear mDevice.wait(Until.hasObject(By.pkg("com.example.myapp").depth(0)), 5000); } @Test public void testButton() { UiObject2 button = mDevice.wait(Until.findObject(By.res("com.example.myapp:id/my_button")), 5000); assertThat(button, notNullValue()); button.click(); } } ``` 5. 运行测试用例。可以通过在终端中运行以下命令来运行测试: ``` ./gradlew connectedAndroidTest ``` 这将启动模拟器/设备并运行测试用例。 总之,使用UiAutomator编写app自动化测试用例需要一定的编程经验,并且需要对Android应用程序的UI结构有一定的了解。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

代码小怡

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值