Interface Slider

All Superinterfaces:
Clickable, EditFieldBase, EditFieldCommon, EnabledProvider, LocationInfoProvider, SupportDragAndDrop, SupportsNativeObject, TestObject, TestObjectDescriber, VisibleProvider, WaitUntilEnabledProvider, WaitUntilVisibleProvider, WebElement, WebTestObject, WebTestObjectDescriber

public interface Slider extends WebElement, EditFieldCommon, WaitUntilEnabledProvider
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�/>
  • Method Details

    • getNumericValue

      double getNumericValue() throws GeneralLeanFtException
      Returns the current value in the number field.
      Returns:
      the current value in the number field.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • getDefaultNumericValue

      double getDefaultNumericValue() throws GeneralLeanFtException
      Returns the default value for this slider.
      Returns:
      the default value for this slider.
      Throws:
      GeneralLeanFtException - if error occurs during execution
    • getMin

      double getMin() throws GeneralLeanFtException
      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

      double getMax() throws GeneralLeanFtException
      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

      void setValue(double value) throws GeneralLeanFtException
      Sets the value in the field.
      Parameters:
      value - the numeric value to set in the field.
      Throws:
      GeneralLeanFtException - if error occurs during execution