我的套件中的测试失败,现在使用的是Android Orchestrator,但我得到的只是以下消息:



我不知道如何访问该文件。有什么帮助吗?

最佳答案

您可以在设备上的/data/data/android.support.test.orchestrator/files/下找到它们。

要通过ADB将它们从设备上移除(需要启用调试功能,并且必须有root用户的设备或仿真器才能拥有root用户):

adb root
adb pull /data/data/android.support.test.orchestrator/files/

非root用户,AndroidX用户可以使用:
adb shell run-as androidx.test.orchestrator cat /data/user_de/0/androidx.test.orchestrator/files/com.pkg.name#testName.txt

10-08 14:36