Keyboard and Mouse
Some3C.com – A Professional Solution for iOS Development and Testing
1.Mouse clicks
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/click
Request function name
id
String
Device unique ID
Separate multiple devices with commas
button
String
1 left button, 2 right button, 3 middle button, 4, 5, 6, 7, 8 button
If it is empty, the default left key is supported, and up to 8 keys are supported
x
Integer
x-coordinate
-
y
Integer
y coordinate
-
time
Integer
The delay between pressing and popping up, if not filled in, it will be handled by the internal
millisecond
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
2.Mouse slide
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/swipe
Request function name
id
String
Device unique ID
Separate multiple devices with commas
button
String
1 left button, 2 right button
Empty default left button
direction
Integer
Slide direction up, down, left, right
Corresponding to up, down, left and right respectively
len
Floating point numbers
Slide distance percentage
Assume 0.9 will slide from 10% to 90% of the screen
step_sleep
Integer
When steping is greater than 1, it takes effect
The interval between multiple slides in milliseconds
stepping
Integer
How many times to slide to the specified position in the loop
-
brake
Integer
Stop immediately after sliding
Some interfaces may be delayed after sliding
sx
Integer
y coordinate
0 Automatically calculated using the sliding distance percentage
sy
Integer
y coordinate
0 Automatically calculated using the sliding distance percentage
ex
Integer
y coordinate
0 Automatically calculated using the sliding distance percentage
ey
Integer
y coordinate
0 Automatically calculated using the sliding distance percentage
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
{ "fun": "/mouse/swipe", "msgid": 2, "data": { "id": "0C:51:01:0B:E5:EA", "button": "left", "direction": "left", "steping": 0, "step_sleep": 0, "brake": true, "sx": 100, "sy": 100, "ex": 100, "ey": 100 } }
Response
Response data data field description None
3.Mouse pop-up
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/up
Request function name
id
String
Device unique ID
Separate multiple devices with commas
button
String
1 left button, 2 right button, 3 middle button, 4, 5, 6, 7, 8 button
If it is empty, the default left key is supported, and up to 8 keys are supported
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
4.Mouse down
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/down
Request function name
id
String
Device unique ID
Separate multiple devices with commas
button
String
1 left button, 2 right button, 3 middle button, 4, 5, 6, 7, 8 button
If it is empty, the default left key is supported, and up to 8 keys are supported
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
5.Mouse movement
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/move
Request function name
id
String
Device unique ID
Separate multiple devices with commas
x
Integer
x-coordinate
-
y
Integer
y coordinate
-
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
6.Mouse reset
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/reset
Request function name
id
String
Device unique ID
Separate multiple devices with commas
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
7.Mouse wheel
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/mouse/wheel
Request function name
id
String
Device unique ID
Separate multiple devices with commas
direction
String
Scroll direction
up, down, left, right
len
String
Device unique ID
Scroll length 1-127
number
String
Device unique ID
Number of scrolls
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
8.Keyboard Pressed
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/key/down
Request function name
id
String
Device unique ID
Separate multiple devices with commas
key
String
Press the keyboard key
Only supports English, numbers and English characters, hotkeys (only supports single keys)
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
9.Keyboard pop-up
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/key/up
Request function name
id
String
Device unique ID
Separate multiple devices with commas
key
String
Pop-up keyboard key
Only supports English, numbers and English characters, hotkeys (only supports single keys)
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
10.Keyboard pops up all
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/key/upall
Request function name
id
String
Device unique ID
Separate multiple devices with commas
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Response data data field description None
11.Keyboard Input
Calling
Request Parameters
parameter
type
illustrate
Remark
fun
String
/key/sendkey
Request function name
id
String
Device unique ID
Separate multiple devices with commas
key
String
character
Only English, numbers and English characters are supported
fun_key
String
Hotkeys
When using hotkeys, please leave the key parameter empty
httpGet request example
httpPost request example
httpPost json request example [websocket can also send the same json request]
Response
Common hotkey list
Hotkeys
illustrate
WIN+h
Home Screen
TAB+b
Return (not supported by all apps)
AppSwitch
App Switcher
ControlBar
Control Center
NoticeBar
Notification Center
TAB+l
Lock screen
OPENKeyboard
Open the on-screen keyboard
shift+win+3
screenshot
shift+win+4
Screen capture and editing
CTRL+ALT+SHIFT+WIN+r
Restart
CTRL+ALT+WIN+p
Pass-through mode (turn the full keyboard on or off)
WIN+c
copy
WIN+v
Paste
WIN+a
Select All
WIN+x
Cut
SwitchIme
Switch input method
BACKSPACE
Backspace key
Spacebar (just a space)
TAB
TAB key
ENTER
Enter key
UpArrow
Direction
DownArrow
Direction Down
LeftArrow
Direction Left
RightArrow
Direction Right
Response data data field description None
Last updated