I am using “androidx.compose.ui:ui-test-junit4” and for some reason nothing seems to work to be able to scroll to the next page.
This scrolls but then waits indefinitely
composeTestRule.onNodeWithTag("pager")
.performScrollToIndex(1)
This does nothing
composeTestRule.onNodeWithTag("pager")
.performTouchInput { swipeLeft() }