<Android fragmentscenario need to click on a compo...
# stackoverflow
r
Android fragmentscenario need to click on a compose button This is my code for trying to interact with a compose view in a fragment class Test{ @get:Rule var composeTestRule = createAndroidComposeRule() @Test fun test() { val scenario = launchFragmentInContainer(themeResId = R.style.AppTheme) { val args = TestFragmentArgs( "test parameter" ) TestFragment().also { fragment -> fragment.viewLifecycleOwnerLiveData.observeForever { viewLifecycleOwner -> viewLifecycleOwner?.let...