com.github.mvysny.kaributesting.v10.groovy.ListBoxUtils.groovy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of karibu-testing-v10-groovy Show documentation
Show all versions of karibu-testing-v10-groovy Show documentation
Karibu Testing, support for browserless Vaadin testing in Kotlin
The newest version!
package com.github.mvysny.kaributesting.v10.groovy
import com.github.mvysny.kaributesting.v10.ListBoxKt
import com.vaadin.flow.component.listbox.ListBoxBase
import groovy.transform.CompileStatic
import org.jetbrains.annotations.NotNull
/**
* A set of basic extension methods for ListBox
* and MultiSelectListBox.
* @author mavi
*/
@CompileStatic
class ListBoxUtils {
/**
* Fetches renderings of items currently displayed in the list box component.
*/
@NotNull
static List getRenderedItems(@NotNull ListBoxBase self) {
ListBoxKt.getRenderedItems(self)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy