Package com.hp.lft.sdk.web
Interface Slider
- All Superinterfaces:
Clickable,EditFieldBase,EditFieldCommon,EnabledProvider,LocationInfoProvider,SupportDragAndDrop,SupportsNativeObject,TestObject,TestObjectDescriber,VisibleProvider,WaitUntilEnabledProvider,WaitUntilVisibleProvider,WebElement,WebTestObject,WebTestObjectDescriber
If a browser does not support this slider, an edit field is used instead.
HTML example: <input type="range" name="points" min="1" max= 10�/>
HTML example: <input type="range" name="points" min="1" max= 10�/>
-
Method Summary
Modifier and TypeMethodDescriptiondoubleReturns the default value for this slider.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.EditFieldBase
getMaxCharsInLine, getPlaceholder, getValue, isReadOnly, isRequired, setValueMethods inherited from interface com.hp.lft.sdk.web.EditFieldCommon
getDefaultValue, getMaxLength, getPattern, getRowsCount, getTypeMethods inherited from interface com.hp.lft.sdk.EnabledProvider
isEnabledMethods inherited from interface com.hp.lft.sdk.LocationInfoProvider
getAbsoluteLocation, getLocation, getSizeMethods inherited from interface com.hp.lft.sdk.SupportDragAndDrop
dragAndDropOn, dragAndDropOnMethods inherited from interface com.hp.lft.sdk.SupportsNativeObject
getNativeObjectMethods inherited from interface com.hp.lft.sdk.TestObject
callFTMethod, 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.TestObjectDescriber
describeMethods inherited from interface com.hp.lft.sdk.WaitUntilEnabledProvider
waitUntilEnabled, waitUntilEnabledMethods inherited from interface com.hp.lft.sdk.WaitUntilVisibleProvider
waitUntilVisible, waitUntilVisibleMethods inherited from interface com.hp.lft.sdk.web.WebElement
doubleClick, doubleClick, fireEvent, getAccessibilityName, getCSSSelector, getRole, getXPath, hoverTap, hoverTap, longPress, longPress, pan, pan, pinch, pinch, swipe, swipeMethods inherited from interface com.hp.lft.sdk.web.WebTestObject
getAttribute, getAttributes, getClassName, getComputedStyle, getComputedStyles, getId, getInnerHTML, getInnerText, getName, getOuterHTML, getOuterText, getTagName, getTitle, isVisibleMethods inherited from interface com.hp.lft.sdk.web.WebTestObjectDescriber
describe, describe
-
Method Details
-
getNumericValue
Returns the current value in the number field.- Returns:
- the current value in the number field.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
getDefaultNumericValue
Returns the default value for this slider.- Returns:
- the default value for this slider.
- Throws:
GeneralLeanFtException- if error occurs during execution
-
getMin
Returns 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
-
getMax
Returns 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
-
setValue
Sets the value in the field.- Parameters:
value- the numeric value to set in the field.- Throws:
GeneralLeanFtException- if error occurs during execution
-