Long press
Perform a long press action at specified coordinates for a specified duration. Useful for triggering context menus, drag operations, or other long-press interactions.
Documentation Index
Fetch the complete documentation index at: https://docs.gbox.ai/llms.txt
Use this file to discover all available pages before exploring further.
Authorizations
Enter your API Key in the format: Bearer . Get it from https://gbox.ai
Path Parameters
Box ID
"c9bdc193-b54b-4ddb-a035-5ac0c598d32d"
Body
- Long Press Action
- Long Press Action with Natural Language
- Long Press Action by Element
Long press action configuration.
Operation flow:
- Touch finger at specified coordinates
- Hold for the specified duration
- Release finger
This is useful for triggering context menus, drag operations, or other long-press interactions.
X coordinate of the long press
350
Y coordinate of the long press
250
Duration to hold the press (e.g. '1s', '500ms')
Supported time units: ms (milliseconds), s (seconds), m (minutes), h (hours) Example formats: "500ms", "30s", "5m", "1h" Default: 1s
"1s"
Action options. When options.screenshot is provided, ALL deprecated screenshot fields (outputFormat, presignedExpiresIn, screenshotDelay, screenshotRange, includeScreenshot) will be completely ignored.
{
"screenshot": {
"outputFormat": "base64",
"presignedExpiresIn": "30m",
"delay": "500ms",
"phases": ["before", "after"]
}
}Response
Long press action executed successfully. The response includes the actual coordinates and duration of the long press.
Result of long press action execution with actual parameters used
message
"Action executed successfully"
Unique identifier for each action. Use this ID to locate the action and report issues.
"c9bdc193-b54b-4ddb-a035-5ac0c598d32d"
Actual parameters used when executing the long press action
{ "x": 350, "y": 250, "duration": "1s" }Optional screenshot data. Only present when screenshots are requested via options.screenshot.phases or deprecated fields
{
"trace": {
"uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA..."
},
"before": {
"uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA..."
},
"after": {
"uri": "data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUA..."
}
}