本文介紹了Java和Espresso-can-t輸入,需要支持輸入法,或者可以從類:Class SearchView賦值的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學習吧!
問題描述
我正在嘗試使用Espresso來測試具有此XML的應用程序:
<com.google.android.material.textfield.TextInputLayout
android:id="@+id/tvLogin"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:hint="myHint"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<com.google.android.material.textfield.TextInputEditText
android:layout_width="match_parent"
android:layout_height="56dp"
android:imeOptions="flagNoExtractUi|actionNext"
android:inputType="text" />
</com.google.android.material.textfield.TextInputLayout>
這是我嘗試運行的測試:
onView(withId(R.id.tvLogin)).check(ViewAssertions.matches(ViewMatchers.isDisplayed()));
onView(withId(R.id.tvLogin)).perform(typeText("test"));
我收到此錯誤:
Caused by: java.lang.RuntimeException: Action will not be performed because the target view does not match one or more of the following constraints:
((is displayed on the screen to the user) and (supports input methods or is assignable from class: class android.widget.SearchView))
Target view: "TextInputLayout{id=2131362315, res-name=tvLogin, visibility=VISIBLE, width=831, height=144, has-focus=false, has-focusable=true, has-window-focus=true, is-clickable=false, is-enabled=true, is-focused=false, is-focusable=false, is-layout-requested=false, is-selected=false, layout-params=androidx.constraintlayout.widget.ConstraintLayout$LayoutParams@8241b55, tag=null, root-is-layout-requested=false, has-input-connection=false, x=39.0, y=39.0, child-count=2}"
推薦答案
您的tvLogin
是TextInputLayout
,這也是LinearLayout
,所以當您在它上執行typeText()
時會出現錯誤。由于typeText()
僅適用于可編輯字段,并且TextInputEditText
是tvLogin
的后代,您可以重寫測試以使用Espresso:
中的一個方便的匹配器ViewMatchers.supportInputMethods()
onView(allOf(supportsInputMethods(), isDescendantOfA(withId(R.id.tvLogin))))
.perform(typeText("test"))
或者,您也可以提供TextInputEditText
的ID:
<com.google.android.material.textfield.TextInputEditText
android:id="@+id/tvLoginEditText"
android:layout_width="match_parent"
android:layout_height="56dp"
android:imeOptions="flagNoExtractUi|actionNext"
android:inputType="text" />
,然后對可編輯字段執行typeText()
:
onView(withId(R.id.tvLoginEditText))
.perform(typeText("test"))
這篇關于Java和Espresso-can-t輸入,需要支持輸入法,或者可以從類:Class SearchView賦值的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,