SemanticsAutoScrollProviderImpl works by trying to find the expected element by matcher and scrolling to it.
But LayzColumn works in a way that there is no element outside the visible screen.
You need to scroll there to have it.
So SemanticsAutoScrollProviderImpl should instead do something like this:
val list = child<KNode> {
addSemanticsMatcher(SemanticsMatcher.keyIsDefined(SemanticsProperties.VerticalScrollAxisRange))
}
list.assertExists()
list.performScrollToNode(matcher)
Where matcher is the original element that we want to find.