The post Mouse Clicks & Key Press Using Testmate appeared first on TestMate.
]]>Mouse Click
'Perform mouse click on the entered x and y co ordinates
Call native.MouseClick(5,5)
Mouse Right Click
'Perform right mouse click on the entered x and y co ordinates
Call native.MouseClickRight(5,25)
Perform KeyPress
'Perform keypress on the passed virtual key
'0x14 - Caps Lock
Call native.KeyPress("0x14")
Perform KeyDown
'Perform key down on the passed virtual key
'0x14 - Caps Lock
Call native.KeyDown("0x14")
Perform KeyUp
'Perform key up on the passed virtual key
'0x14 - Caps Lock
Call native.Keyup("0x14")
List of all the virtual keys can be found here.
The post Mouse Clicks & Key Press Using Testmate appeared first on TestMate.
]]>