Class BigDecimalFieldLocator
java.lang.Object
com.vaadin.browserless.locator.Locator<BigDecimalField,BigDecimalFieldLocator>
com.vaadin.flow.component.textfield.BigDecimalFieldLocator
- All Implemented Interfaces:
Clickable<BigDecimalField>
@Generated("com.vaadin.browserless.locator.processor.LocatorProcessor")
public class BigDecimalFieldLocator
extends Locator<BigDecimalField,BigDecimalFieldLocator>
implements Clickable<BigDecimalField>
Generated locator for
BigDecimalField, derived from
TextFieldTester. 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclear()Resets the value to the empty one, as when clicking on component clear button on the browser.voidEnsures the component is in a usable state before interaction.Gets the component being tested.voidsetValue(BigDecimal value) Set the value to the component if it is usable.Methods inherited from class com.vaadin.browserless.locator.Locator
atIndex, component, components, exists, inside, inside, invalidate, self, with, withAriaLabel, withAriaLabelContaining, withAttribute, withAttribute, withCaption, withCaptionContaining, withClassName, withCondition, withId, withLabel, withLabelContaining, withoutAttribute, withoutAttribute, withoutClassName, withoutTheme, withText, withTextContaining, withTheme, withValueMethods 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, click, middleClick, middleClick, rightClick, rightClick
-
Constructor Details
-
BigDecimalFieldLocator
public BigDecimalFieldLocator() -
BigDecimalFieldLocator
-
-
Method Details
-
getComponent
Description copied from interface:ClickableGets the component being tested.- Specified by:
getComponentin interfaceClickable<BigDecimalField>- 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<BigDecimalField>
-
setValue
Set the value to the component if it is usable. For a non interactable component an IllegalStateException will be thrown as the end user would not be able to set a value. Javadoc copied fromTextFieldTester.setValue(java.lang.Object).- Parameters:
value- value to set
-
clear
public void clear()Resets the value to the empty one, as when clicking on component clear button on the browser. AnIllegalStateExceptionis thrown if the clear button is not visible. Javadoc copied fromTextFieldTester.clear().- Throws:
IllegalStateException- if the text field is not usable or the clear button is not visible.
-