com.vaadin.flow.component.checkbox.
Class CheckboxGroupTester<T extends CheckboxGroup<V>,V>
Type Parameters:
T
- component type
Tester for CheckboxGroup components.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
Deselects all client usable items.
void
deselectItem
(String selection) Deselects an item by its client string representation.
void
deselectItems
(String... selection) Deselects multiple items by client string representation.
void
deselectItems
(Collection<String> selection) Deselects items by client string representation.
Get the list of currently selected items.
boolean
isUsable()
Validate that component can be interacted with and should be visible in the UI.
protected void
notUsableReasons
(Consumer<String> collector) Provides messages explaining why the component is actually not usable.
void
Selects all client usable items.
void
selectItem
(String selection) Selects an item by its client string representation.
void
selectItems
(String... selection) Selects multiple items by client string representation.
void
selectItems
(Collection<String> selection) Selects multiple items by client string representation.
void
updateSelection
(Collection<String> selection, BiConsumer<Collection<V>, Collection<V>> updater) Methods inherited from class com.vaadin.testbench.unit.ComponentTester
ensureComponentIsUsable, ensureComponentIsUsable, ensureVisible, ensureVisible, find, findAllByQuery, findByQuery, fireDomEvent, fireDomEvent, fireDomEvent, getComponent, getField, getField, getMethod, getMethod, isUsable, notUsableReasons, roundTrip, setModal
-
Constructor Details
-
CheckboxGroupTester
Wrap given component for testing.
Parameters:
component
- target component
-
-
Method Details
-
isUsable
public boolean isUsable()Description copied from class:
ComponentTester
Validate that component can be interacted with and should be visible in the UI. Subclasses overriding this method should also override
ComponentTester.notUsableReasons(Consumer)
to provide additional details to the potential exception thrown byComponentTester.ensureComponentIsUsable()
.Overrides:
isUsable
in classComponentTester<T extends CheckboxGroup<V>>
Returns:
true
if component can be interacted with by the userSee Also:
-
notUsableReasons
Description copied from class:
ComponentTester
Provides messages explaining why the component is actually not usable. Subclasses overriding
ComponentTester.isUsable()
should also override this method to provide additional details to the potential exception throw byComponentTester.ensureComponentIsUsable()
.Overrides:
notUsableReasons
in classComponentTester<T extends CheckboxGroup<V>>
See Also:
-
selectItem
Selects an item by its client string representation.
Parameters:
selection
- item string representation -
selectItems
Selects multiple items by client string representation.
Parameters:
selection
- items string representation -
selectItems
Selects multiple items by client string representation.
Parameters:
selection
- items string representation -
selectAll
public void selectAll()Selects all client usable items.
-
deselectItem
Deselects an item by its client string representation.
Parameters:
selection
- item string representation -
deselectItems
Deselects multiple items by client string representation.
Parameters:
selection
- items string representation -
deselectItems
Deselects items by client string representation.
Parameters:
selection
- items string representation -
deselectAll
public void deselectAll()Deselects all client usable items.
-
getSelected
Get the list of currently selected items.
Returns:
current selection, or an empty list. Never null.
-
updateSelection
public void updateSelection(Collection<String> selection, BiConsumer<Collection<V>, Collection<V>> updater)
-