我一直在研究 UIAutomator 示例项目。我使用 AndroidX 测试库创建了新的测试用例。
我能够从命令行构建、运行测试用例。但是当我尝试从 Android Studio 打开应用程序时,我可以看到大多数类都没有正确导入。例如,
import androidx.test.uiautomator.UiObject2;
import org.junit.Before;
上述两个进口显示为未进口。同样,除了 android.content.Context、android.content.Intent 等,许多类都显示相同的错误,
有人可以对此有所了解。我能够从命令行正确执行测试用例,但无法从 Android Studio 正确执行它们。
我已经重新启动 PC/Studio,清除了缓存,问题仍然存在。
下面是我在 app/build.gradle 中添加的依赖项。
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
androidTestImplementation 'androidx.test:core:1.0.0'
androidTestImplementation 'androidx.test.ext:junit:1.0.0'
androidTestImplementation 'androidx.test:runner:1.1.0'
androidTestImplementation 'junit:junit:4.12'
在 gradle.properties 中添加了以下代码
android.useAndroidX=true
android.enableJetifier=true
我几乎遵循了从 android-testing-master/ui/uiautomator 示例代码中获得的相同内容,但不确定我缺少什么。