Содержание

TypeIn

Sends the specified text to the browser

Syntax

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

Parameters

Notes

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');