如何在 Espresso 测试中发送 shell 命令

How do I send shell command in Espresso Test

我是 Espresso 的新手。我想测试 UI 应用程序的性能(流畅性)。我可以在 Espresso 中创建自定义注释以获得特定测试的流畅性或自动化新测试用例。有谁知道如何从浓缩咖啡测试中发送像“adb shell dumpsys gfxinfo app_package”这样的命令?

在Android21中添加了一个方法android.app.UiAutomation#executeShellCommand。 然后只需要读取结果,类似于项目中实现的内容 screenshot-tests-for-android: implemented here