如何使用浓缩咖啡打开导航抽屉?

How to open Navigation Drawer using espresso?

我试过 DrawerActions.open() 但它显示未定义。 还有其他访问导航抽屉的方法吗??

求推荐。

espresso 的 DrawerActions class 有问题,我无法查看它。 如果您有任何想法,请分享。

尝试使用 espresso 中的 swipeRight() 方法。 ViewAction.swipeRight();

https://developer.android.com/reference/android/support/test/espresso/action/ViewActions.html

检查您的 build.gradle 文件中是否缺少 espresso-contrib 库。

androidTestImplementation 'com.android.support.test.espresso:espresso-contrib:3.0.2'

如果您正在使用 androidx,

androidTestImplementation 'androidx.test.espresso:espresso-contrib:3.2.0'

检查以下 link - https://developer.android.com/training/testing/espresso/#packages

中其他有用的 espresso 扩展库