Содержание

TypeIn

Sends the specified text to the browser

Syntax

procedure TypeIn(aText: string; aInterval: integer=120; aDeviat: integer=50);

Parameters

  • aText
    • type: string
    • functions: text which was sent to the browser
  • aInterval
    • type: integer
    • functions: basic interval between the symbols input
  • aDeviat
    • type: integer
    • functions: random interval to be added to the basic

Notes

  • The text will be sent to the focused element.

Examples

  1. //Send the text "test". Pauses from 120 to 170 milliseconds between symbols
     TypeIn('test');
  2. //Send the text "test". Pauses from 200 to 300 milliseconds between symbols
     TypeIn('test',200,100);
  3. LoadURI('google.com');
    TypeIn('test request');