UiAutomator2 使用示例
时间: 2023-07-11 18:11:46 浏览: 159
uiautomator案例
下面是一个简单的使用`UiAutomator2`框架编写的测试用例示例:
```java
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.uiautomator.By;
import androidx.test.uiautomator.UiDevice;
import androidx.test.uiautomator.Until;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class MyUiAutomatorTest {
private UiDevice mDevice;
@Before
public void setUp() throws Exception {
// 获取UiDevice实例
mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
// 按Home键回到主屏幕
mDevice.pressHome();
// 等待Launcher界面出现
mDevice.wait(Until.hasObject(By.pkg(getLauncherPackageName()).depth(0)), 5000);
}
@Test
public void testOpenSettings() throws Exception {
// 打开应用列表
mDevice.pressRecentApps();
// 等待应用列表出现
mDevice.wait(Until.hasObject(By.res("com.android.systemui:id/recents_view")), 5000);
// 找到设置应用并点击
mDevice.findObject(By.text("设置")).click();
// 等待设置应用打开
mDevice.wait(Until.hasObject(By.pkg("com.android.settings").depth(0)), 5000);
// 验证是否成功打开了设置应用
assertEqual("com.android.settings", mDevice.getCurrentPackageName());
}
private String getLauncherPackageName() throws Exception {
// 获取默认的Launcher应用包名
final Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
PackageManager pm = InstrumentationRegistry.getContext().getPackageManager();
ResolveInfo resolveInfo = pm.resolveActivity(intent, PackageManager.MATCH_DEFAULT_ONLY);
return resolveInfo.activityInfo.packageName;
}
}
```
这个测试用例会执行以下操作:
1. 回到主屏幕
2. 打开应用列表
3. 打开“设置”应用
4. 验证是否成功打开了“设置”应用
您可以根据自己的需求编写更复杂的测试用例,例如在应用程序中执行用户操作、验证应用程序的UI元素等。需要注意的是,`UiAutomator2`框架只能在Android 4.3或更高版本上运行。
阅读全文