Class RadioButtonLocator<V>
java.lang.Object
com.vaadin.browserless.locator.Locator<com.vaadin.flow.component.radiobutton.RadioButton<V>,RadioButtonLocator<V>>
com.vaadin.flow.component.radiobutton.RadioButtonLocator<V>
- All Implemented Interfaces:
Clickable<com.vaadin.flow.component.radiobutton.RadioButton<V>>
@Generated("com.vaadin.browserless.locator.processor.LocatorProcessor")
public class RadioButtonLocator<V>
extends Locator<com.vaadin.flow.component.radiobutton.RadioButton<V>,RadioButtonLocator<V>>
implements Clickable<com.vaadin.flow.component.radiobutton.RadioButton<V>>
Generated locator for
RadioButton, derived from
RadioButtonTester. Filter steps are inherited from
Locator; action methods delegate to a fresh tester
around the resolved component, so behavioral changes belong on the
tester, not here.-
Constructor Summary
ConstructorsConstructorDescriptionRadioButtonLocator(com.vaadin.flow.component.radiobutton.RadioButton<V> component) RadioButtonLocator(Class<V> vType) -
Method Summary
Methods inherited from class com.vaadin.browserless.locator.Locator
atIndex, component, components, exists, inside, inside, invalidate, self, with, withAttribute, withAttribute, withClassName, withCondition, withId, withoutAttribute, withoutAttribute, withoutClassNameMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface com.vaadin.browserless.Clickable
click, click, middleClick, middleClick, rightClick, rightClick
-
Constructor Details
-
RadioButtonLocator
-
RadioButtonLocator
-
-
Method Details
-
getComponent
Description copied from interface:ClickableGets the component being tested.- Specified by:
getComponentin interfaceClickable<V>- Returns:
- the component under test
-
ensureComponentIsUsable
public void ensureComponentIsUsable()Description copied from interface:ClickableEnsures the component is in a usable state before interaction.- Specified by:
ensureComponentIsUsablein interfaceClickable<V>
-
click
public void click()If the component is usable, send click to component as if it was from the client. Checkbox status changes from unchecked to checked or vice versa. Javadoc copied fromRadioButtonTester.click().
-