我需要在自定义Espresso matcher中获取id(string)视图。我需要写一些类似with id: com.domain:id/et_name
的日志。
我尝试使用:Resources.getSystem().getResourceName(textView.getId());
,但它会返回null
。
在espresso matcher中获取ID的方法是什么?
答案 0 :(得分:0)
这是一种获取视图ID(字符串)的方法:textView.getResources().getResourceName(textView.getId());
,但看起来像espresso不允许写日志 - :(