Выполнение теста UIAumator против APK на устройстве
Какое-нибудь руководство по запуску теста Android UIAutomator на устройстве? Я закончил писать простой тест как новичок, используя этот замечательный фреймворк для тестирования. Теперь мне интересно, как запустить тест с приложением на устройстве. Я знаю, что для приложения Espresso это очень просто, но я не нашел способа запустить тест с использованием UIAutomator. Пожалуйста, какой-нибудь подробный учебник? Я пробовал это руководство SO - /questions/41151390/zapusk-testov-uiautomator-bez-optsii-zapuska-android-studio.... и получаю эту ошибку
ошибка
C:\Users\Kadeoya\AndroidStudioProjects\ZoneFlutterAppTesting>adb shell am instrument -w
-r -e debug false -e class com.example.kadeoya.zoneflutterapptesting.MainEntryTest com
.example.app.test/android.support.test.runner.AndroidJUnitRunner
android.util.AndroidException: INSTRUMENTATION_FAILED: com.example.app.test/android.sup
port.test.runner.AndroidJUnitRunner
INSTRUMENTATION_STATUS: id=ActivityManagerService
INSTRUMENTATION_STATUS: Error=Unable to find instrumentation info for: ComponentInfo{co
m.example.app.test/android.support.test.runner.AndroidJUnitRunner}
C:\Users\Kadeoya\AndroidStudioProjects\ZoneFlutterAppTesting>adb shell am instrument -w
-r -e debug false -e class com.example.kadeoya.zoneflutterapptesting.MainEntryTest com
.example.app.test/android.support.test.runner.AndroidJUnitRunner
android.util.AndroidException: INSTRUMENTATION_FAILED: com.example.app.test/android.sup
port.test.runner.AndroidJUnitRunnerINSTRUMENTATION_STATUS: id=ActivityManagerService
INSTRUMENTATION_STATUS: Error=Unable to find instrumentation info for: ComponentInfo{co
m.example.app.test/android.support.test.runner.AndroidJUnitRunner}
INSTRUMENTATION_STATUS_CODE: -1
at com.android.commands.am.Am.runInstrument(Am.java:890)
at com.android.commands.am.Am.onRun(Am.java:400)
at com.android.internal.os.BaseCommand.run(BaseCommand.java:51)
C:\Users\Kadeoya\AndroidStudioProjects\ZoneFlutterAppTesting>adb shell am instrument -w
-r -e debug false -e class com.example.kadeoya.zoneflutterapptesting.MainEntryTest com
.example.app.test/android.support.test.runner.AndroidJUnitRunner
android.util.AndroidException: INSTRUMENTATION_FAILED: com.example.app.test/android.sup
port.test.runner.AndroidJUnitRunner
at com.android.commands.am.Am.runInstrument(Am.java:890)
at com.android.commands.am.Am.onRun(Am.java:400)INSTRUMENTATION_STATUS: id=Acti
vityManagerService
at com.android.internal.os.BaseCommand.run(BaseCommand.java:51)
INSTRUMENTATION_STATUS: Error=Unable to find instrumentation info for: ComponentInfo{co
m.example.app.test/android.support.test.runner.AndroidJUnitRunner}
INSTRUMENTATION_STATUS_CODE: -1
at com.android.commands.am.Am.main(Am.java:121)
at com.android.internal.os.RuntimeInit.nativeFinishInit(Native Method)
at com.android.internal.os.RuntimeInit.main(RuntimeInit.java:294)
Это мой простой тест
package com.example.kadeoya.zoneflutterapptesting;
import android.content.Context;
import android.content.Intent;
import android.support.test.InstrumentationRegistry;
import android.support.test.filters.SdkSuppress;
import android.support.test.runner.AndroidJUnit4;
import android.support.test.uiautomator.By;
import android.support.test.uiautomator.UiDevice;
import android.support.test.uiautomator.UiObject;
import android.support.test.uiautomator.UiObjectNotFoundException;
import android.support.test.uiautomator.UiSelector;
import android.support.test.uiautomator.Until;
import org.junit.Before;
import org.junit.Test;
import org.junit.runner.RunWith;
import static org.hamcrest.core.IsNull.notNullValue;
import static org.junit.Assert.assertThat;
/**
* Created by Kadeoya on 5/25/2018.
*/
@RunWith(AndroidJUnit4.class)
@SdkSuppress(minSdkVersion = 18)
public class MainEntryTest {
private static final String BASIC_SAMPLE_PACKAGE = "com.appzonegroup.zone.MainActivity";
private static final int LAUNCH_TIMEOUT = 5000;
private static final String STRING_TO_BE_TYPED = "UiAutomator";
private UiDevice mDevice;
@Before
public void startMainActivityFromHomeScreen() {
mDevice = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
mDevice.pressHome();
final String launcherPackage = mDevice.getLauncherPackageName();
assertThat(launcherPackage, notNullValue());
mDevice.wait(Until.hasObject(By.pkg(launcherPackage).depth(0)), LAUNCH_TIMEOUT);
Context context = InstrumentationRegistry.getContext();
final Intent intent = context.getPackageManager().getLaunchIntentForPackage(BASIC_SAMPLE_PACKAGE);
intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TASK);
context.startActivity(intent);
mDevice.wait(Until.hasObject(By.pkg(BASIC_SAMPLE_PACKAGE).depth(0)), LAUNCH_TIMEOUT);
}
@Test
public void SignUpButtonTest() throws UiObjectNotFoundException{
UiObject signUpButton = mDevice.findObject(new UiSelector().text("Sign Up").className("android.widget.Button").instance(0));
if (signUpButton.exists() && signUpButton.isEnabled()){
signUpButton.click();
}
}
}