Remote Control
Swipe Screen​
Restrictions: "none"
Sends a swipe command to the device.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
inputFrom | enum | Set the swipe coordinates from the code or manually. | Yes | No |
startX | number | The normalized x-coordinate (0 <= x <= 1 ) of the swipe start point. Valid only when Input From is selected as Manual Input . | Yes | No |
startY | number | The normalized y-coordinate (0 <= y <= 1 ) of the swipe start point. Valid only when Input From is selected as Manual Input . | Yes | No |
endX | number | The normalized x-coordinate (0 <= x <= 1 ) of the swipe end point. Valid only when Input From is selected as Manual Input . | Yes | No |
endY | number | The normalized y-coordinate (0 <= y <= 1 ) of the swipe end point. Valid only when Input From is selected as Manual Input . | Yes | No |
startPoint | code | The start point of the swipe action. Valid only when Input From is selected as From Code . | Yes | Yes |
endPoint | code | The end point of the swipe action. Valid only when Input From is selected as From Code . | Yes | Yes |
duration | duration | Duration of the swipe in milliseconds. | Yes | No |
waitAfterInput | duration | Wait after sending the full input before executing the next step. | No | No |
Outputs​
Name | Type | Description |
---|---|---|
default | null |
Tap Screen​
Restrictions: "none"
Sends a remote command to the TV.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
inputFrom | enum | Set the tap coordinates from the code or manually. | Yes | No |
x | number | The normalized x-coordinate (0 <= x <= 1 ) of the tap. | Yes | No |
y | number | The normalized y-coordinate (0 <= y <= 1 ) of the tap. | Yes | No |
point | code | The point to tap on the screen. If Input From is selected as From Code , this will be used as the tap coordinates. | Yes | Yes |
async | boolean | Send the tap event asynchronously. | Yes | No |
waitAfterInput | duration | Wait after sending the full input before executing the next step. | No | No |
Outputs​
Name | Type | Description |
---|---|---|
default | null |
Enter Text​
Restrictions: "none"
Enters the provided string of text via a given keyboard.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
keyboard | enum | Specify the keyboard to use for text entry. | Yes | No |
text | string | The text to be entered. | Yes | Yes |
waitBetweenKeys | duration | Wait time between each key press. | No | No |
waitAfterInput | number | Wait after sending the full input before executing the next step. | No | No |
focus | string | Specify the the initial focused key when the keyboard is shown. Will use the keyboard's default if not specified. | No | No |
submit | boolean | Whether or not to press the keyboard submit key after inputting the text. | Yes | No |
submitKey | string | The key to be pressed to submit the text input. | Yes | No |
Outputs​
Name | Type | Description |
---|---|---|
default | null |
Open App​
Restrictions: "none"
Open the targeted application or build.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
coldStart | boolean | Close the app if it is already open before opening it again. | No | No |
Outputs​
Name | Type | Description |
---|---|---|
default | null |
Close App​
Restrictions: "none"
Closes the currently opened application on the device.
Inputs​
Name | Type | Description | Required | Dynamic |
---|
Outputs​
Name | Type | Description |
---|---|---|
default | null |
Press Key​
Restrictions: "none"
Sends a remote command to the TV.
Inputs​
Name | Type | Description | Required | Dynamic |
---|---|---|---|---|
keyCodeSequence | key | Define the sequence of keys to press. | Yes | No |
waitBetweenKeys | duration | Wait time between each key press. | No | No |
waitAfterInput | duration | Wait after sending the full input before executing the next step. | No | No |
Outputs​
Name | Type | Description |
---|---|---|
default | null |