如何在Android Espresso自定义匹配器中使用view.getId()获取视图的id(字符串)?

时间:2016-01-04 11:56:15

标签: android android-testing android-espresso

我需要在自定义Espresso matcher中获取id(string)视图。我需要写一些类似with id: com.domain:id/et_name的日志。

我尝试使用:Resources.getSystem().getResourceName(textView.getId());,但它会返回null

在espresso matcher中获取ID的方法是什么?

1 个答案:

答案 0 :(得分:0)

这是一种获取视图ID(字符串)的方法:textView.getResources().getResourceName(textView.getId());,但看起来像espresso不允许写日志 - :(