WebTypingOptimization |
Top Previous Next |
×V4.1Ø
Valid for: SetStartup& SetRuntime
Syntax - SetStartup WebTypingOptimization {"None" | "FireEventsWithNoWait" | "TypeLastCharacter"}
Description: This option is used to set the optimization method for typing characters into a web control. Depending on the element, the optimization method chosen can dramatically improve the speed of the command TypeWebValue. If None is used, no optimization will be used and characters will be typed one character at a time. The option FireEventsWithNoWait causes the characters to be typed without waiting for any events to be triggered. With the option TypeLastCharacter chosen, all characters will be pasted into the web element and only the last character will be typed, which will trigger a web event. The web event tells the element that something has been typed.
Sample 1: The following statement sets the WebTypingOptimization option so that it instructs EMUE to use no typing optimization. SetStartup WebTypingOptimization "None"
Sample 2: The following statement sets the WebTypingOptimization option at runtime so that it instructs EMUE to not wait when typing events are fired. SetRuntime WebTypingOptimization "FireEventsWithNoWait"
Sample 3: The following statement sets the WebTypingOptimization option at runtime so that it instructs EMUE to paste all of the text except for the last character which will be typed. SetRuntime WebTypingOptimization "TypeLastCharacter"
See Also:
|