Skip to main content

[Mobile] Set Slider Value

Description​

Set the value for Slider control (android.widget.SeekBar for Android, UIASlider for iOS) at specific percentage.

Keyword name: Mobile.setSliderValue

Parameters​

ParameterParameter TypeRequiredDescription
toTestObjectYesRepresent a mobile element (android.widget.SeekBar for Android, UIASlider for iOS)
percentNumberYesPercentage value to set to the slider ( 0 <= percent <= 100 )
timeoutintYesSystem will wait at most timeout (seconds) to return result
flowControlFailureHandlingOptionalSpecify failure handling schema to determine whether the execution should be allowed to continue or stop.

Example​

You want to set slider value at 50% of the slider:

import static com.kms.katalon.core.testcase.TestCaseFactory.findTestCase
import static com.kms.katalon.core.testdata.TestDataFactory.findTestData
import static com.kms.katalon.core.testobject.ObjectRepository.findTestObject
import internal.GlobalVariable as GlobalVariable
import com.kms.katalon.core.configuration.RunConfiguration as RunConfiguration
import com.kms.katalon.core.mobile.keyword.MobileBuiltInKeywords as Mobile
import com.kms.katalon.core.util.internal.PathUtil as PathUtil

'Start application on current selected android's device'
Mobile.startApplication(GlobalVariable.G_AndroidApp, false)
 
'Set slider value at 50% of the slider'
Mobile.setSliderValue(findTestObject('/Application/App/android.widget.SeekBar0'), 50, 10)
 
'Close application on current selected android's device'
Mobile.closeApplication()
Was this page helpful?
  • Description
  • Parameters
  • Example