com.github.mvysny.kaributesting.v10.ListBox.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karibu-testing-v10 Show documentation
Show all versions of karibu-testing-v10 Show documentation
Karibu Testing, support for browserless Vaadin testing in Kotlin
package com.github.mvysny.kaributesting.v10
import com.vaadin.flow.component.listbox.ListBoxBase
/**
* Fetches renderings of items currently displayed in the list box component.
*/
public fun ListBoxBase<*, T, *>.getRenderedItems(): List {
val items: List = dataProvider._findAll()
return items.map { itemRenderer._getPresentationValue(it) }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy