1. ホーム
  2. android

[解決済み] android espressoでトーストメッセージを確認する

2023-07-13 15:44:30

質問

android espressoでToastメッセージの出現をテストする方法をご存知の方はいらっしゃいますか?robotiumでは、その簡単な&私は使用しますが、エスプレッソで作業を開始したが、正確なコマンドを取得していません。

どのように解決するには?

この少し長い文は、私のために動作します。

import static android.support.test.espresso.assertion.ViewAssertions.matches;
import static android.support.test.espresso.matcher.RootMatchers.withDecorView;
import static android.support.test.espresso.matcher.ViewMatchers.isDisplayed;
import static android.support.test.espresso.matcher.ViewMatchers.withText;
import static org.hamcrest.Matchers.is;
import static org.hamcrest.Matchers.not;
....
onView(withText(R.string.TOAST_STRING)).inRoot(withDecorView(not(is(getActivity().getWindow().getDecorView())))).check(matches(isDisplayed()));