typeIn
Sends the specified text to the browser
Syntax
typeIn = function(aText, aInterval, aDeviat);
Parameters
- aText
- functions: text which was sent to the browser
- aInterval
- functions: basic interval between the symbols input
- aDeviat
- functions: random interval to be added to the basic
Notes
- The text will be sent to the focused element.
Examples
//Send the text "test". Pauses from 120 to 170 milliseconds between symbols typeIn('test');
//Send the text "test". Pauses from 200 to 300 milliseconds between symbols typeIn('test',200,100);
LoadURI('google.com'); typeIn('test request');