Package com.vaadin.flow.component.slider
Class IntegerRangeSliderTester
-
- All Implemented Interfaces:
-
com.vaadin.browserless.Clickable
public class IntegerRangeSliderTester<T extends IntegerRangeSlider> extends NumberRangeSliderTester<T, IntegerRangeSliderValue, Integer>
Tester for IntegerRangeSlider components.
Simulates the user dragging the start and end thumbs in the browser: setting the whole range or either endpoint, or incrementing/decrementing an endpoint by steps, with validation that the component is usable, the values stay within the min/max bounds and the start never exceeds the end.
- Since:
1.1
-
-
Constructor Summary
Constructors Constructor Description IntegerRangeSliderTester(T component)Wrap given component for testing.
-
Method Summary
Modifier and Type Method Description -
Methods inherited from class com.vaadin.browserless.ComponentTester
ensureComponentIsUsable, find, getComponent, setModal -
Methods inherited from class com.vaadin.flow.component.slider.NumberRangeSliderTester
decrementEnd, decrementEndBy, decrementStart, decrementStartBy, incrementEnd, incrementEndBy, incrementStart, incrementStartBy, isUsable, setEnd, setStart, setValue -
Methods inherited from class com.vaadin.browserless.Clickable
click, click, click, middleClick, middleClick, rightClick, rightClick -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Constructor Detail
-
IntegerRangeSliderTester
IntegerRangeSliderTester(T component)
Wrap given component for testing.
- Parameters:
component- target component
-
-
-
-