WET allows you to enter tests either at superfast speed or character by character. This control is implemented by means of a configuration parameter. The configuration parameter, defined in global-configs is:
....
[Object]
typingspeed=0
If the value is set to zero then, the entire text is set in one shot without typing character by character. However all the appropriate events are fired. If you still need to type character by character, you can set the parameter to greater than zero(it could be decimal fractions like 0.1, etc.)
By default (if you dont define the parameter in the global-configs), the typing speed is set to zero
You may also manually override the typing speed inside a test. To do so, you need to say,
Configuration.instance.typing_speed=<m>
where:
m = 0 means that the typing speed is to be set to zero - set all text together(not character by character)
m = value(>0) means that the typing has to be done character by character.
m = -1 means that set the typingspeed to the value defined in the global configuration.