0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[ Android ] NoMachingViewException

Last updated at Posted at 2019-12-20

AndroidTestをするうえでNoMachingViewExceptionというエラーが発生した。

例えば以下のようなコードでテストしたときである。

onView(withText("test")).check(matches(not(isDisplayed())));

このコードはダイアログが表示されていないことを確認するために、ダイアログ上の文字列"text"が画面にないということを確認するプログラムであった。しかしNoMachingViewExceptionというエラーが発生した。

このエラーはつまり、"text"という文字列を持ったViewが存在しないことを示している。

私は以下のようにコードを追加することで、エラーを解消できた。

new Thread (new Runnable(){
    @Override
        public void run() {
             //エラーが発生したテストコードを記述
        }
}

もしNoMachingViewExceptionが発生したら試していただきたい。
ただしなぜ通るのかは検討の余地があるので自己責任で…

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?