[Mobile] Tap And Hold At Position
Description
Tap and hold at a specific position on the screen of the mobile device.
Keyword name: Mobile.tapAndHoldAtPosition
Parameters
Param | Param Type | Required | Description |
---|---|---|---|
x | Number | Yes | x position |
y | Number | Yes | y position |
duration | Number | Yes | Duration (in seconds) that the tap is held on the element, if set to <= 0 then will use default duration |
flowControl | FailureHandling | Optional | Specify failure handling schema to determine whether the execution should be allowed to continue or stop. |
Example
You want to tap at (200,400) position and hold it for 10 seconds.
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)
'Tap at 200,400 position and hold it for 10 seconds'
Mobile.tapAndHoldAtPosition(200, 400, 10)
'Close application on current selected android\'s device'
Mobile.closeApplication()