pressKey
Emulates key pressing with the specified code.
Syntax
pressKey = function(aKeyCode);
Parameters
- aKeyCode
- functions: key code
Examples
//Emulate pressing the "Enter" pressKey(13);
//Emulate pressing the "Tab" pressKey(9);
en:wascript:ecma:methods:presskey
Emulates key pressing with the specified code.
pressKey = function(aKeyCode);
//Emulate pressing the "Enter" pressKey(13);
//Emulate pressing the "Tab" pressKey(9);