2
我正在嘗試編寫一個Espresso測試,它將在自定義SearchView中鍵入Text。自定義搜索查看是在這裏:Android Espresso如何從自定義視圖中獲取EditText,然後鍵入文本
https://github.com/MiguelCatalan/MaterialSearchView/tree/develop/library/src/main/res/layout
我在我的MainActivity使用它。如果我直接在這個SearchView上調用'typeText',它會拋出一個錯誤,因爲我實際上需要從這個SearchBar獲取EditText。
的EditText上是search_view.xml
我覺得咖啡命令應該是:
onView(get EditText from SearchView).perform(typeText("chicken"));
我應該如何獲得的EditText參考?