문제

In my android application (Tablet) I want to verify that after selecting a button the fragment appears on the screen. Is there a way to do this?

도움이 되었습니까?

해결책

You can get a instance of the FragmentManager in your test since you have access to the activity. You can then either find the fragment by id or by tag and test that it is visible using the fragment method "isVisible" and assert that is set to true.

The javadoc for Fragment.isVisible() states Return true if the fragment is currently visible to the user. This means the fragment has been added, has its view attached to the window, and is not hidden.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top