Package com.hp.lft.sdk.web
Interface NumericField
- All Superinterfaces:
- Clickable,- EditFieldBase,- EditFieldCommon,- EnabledProvider,- LocationInfoProvider,- SupportDragAndDrop,- SupportsNativeObject,- TestObject,- TestObjectDescriber,- VisibleProvider,- WaitUntilEnabledProvider,- WaitUntilVisibleProvider,- WebElement,- WebTestObject,- WebTestObjectDescriber
If a browser does not support this field, an edit field is used instead.
 
HTML example: <input type= number max=50 min=30 step=3/>
HTML example: <input type= number max=50 min=30 step=3/>
- 
Method SummaryModifier and TypeMethodDescriptiondoubleReturns the initial value in this field, which is set when this field is reset.doublegetMax()Returns the maximum value that can be entered in the field.doublegetMin()Returns the minimum value that can be entered in the field.doubleReturns the current value in the number field.voidsetValue(double value) Sets the value in the field.Methods inherited from interface com.hp.lft.sdk.web.EditFieldBasegetMaxCharsInLine, getPlaceholder, getValue, isReadOnly, isRequired, setValueMethods inherited from interface com.hp.lft.sdk.web.EditFieldCommongetDefaultValue, getMaxLength, getPattern, getRowsCount, getTypeMethods inherited from interface com.hp.lft.sdk.EnabledProviderisEnabledMethods inherited from interface com.hp.lft.sdk.LocationInfoProvidergetAbsoluteLocation, getLocation, getSizeMethods inherited from interface com.hp.lft.sdk.SupportDragAndDropdragAndDropOn, dragAndDropOnMethods inherited from interface com.hp.lft.sdk.SupportsNativeObjectgetNativeObjectMethods inherited from interface com.hp.lft.sdk.TestObjectcallFTMethod, callFTMethod, exists, exists, findChildren, getDescription, getDisplayName, getParent, getSnapshot, getTextLocations, getTextLocations, getVisibleText, getVisibleText, highlight, highlightMatches, setDescription, setDisplayName, verifyImageExists, verifyImageExists, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, verifyImageMatch, waitUntilExists, waitUntilExistsMethods inherited from interface com.hp.lft.sdk.TestObjectDescriberdescribeMethods inherited from interface com.hp.lft.sdk.WaitUntilEnabledProviderwaitUntilEnabled, waitUntilEnabledMethods inherited from interface com.hp.lft.sdk.WaitUntilVisibleProviderwaitUntilVisible, waitUntilVisibleMethods inherited from interface com.hp.lft.sdk.web.WebElementdoubleClick, doubleClick, fireEvent, getAccessibilityName, getCSSSelector, getRole, getXPath, hoverTap, hoverTap, longPress, longPress, pan, pan, pinch, pinch, swipe, swipeMethods inherited from interface com.hp.lft.sdk.web.WebTestObjectgetAttribute, getAttributes, getClassName, getComputedStyle, getComputedStyles, getId, getInnerHTML, getInnerText, getName, getOuterHTML, getOuterText, getTagName, getTitle, isVisibleMethods inherited from interface com.hp.lft.sdk.web.WebTestObjectDescriberdescribe, describe
- 
Method Details- 
getNumericValueReturns the current value in the number field.- Returns:
- the current value in the number field.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getDefaultNumericValueReturns the initial value in this field, which is set when this field is reset.- Returns:
- the initial value in this field, which is set when this field is reset.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMinReturns the minimum value that can be entered in the field.- Returns:
- the minimum value that can be entered in the field.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
getMaxReturns the maximum value that can be entered in the field.- Returns:
- the maximum value that can be entered in the field.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
- 
setValueSets the value in the field.- Parameters:
- value- the numeric value to set in the field.
- Throws:
- GeneralLeanFtException- if error occurs during execution
 
 
-