Search code examples
c#watin

How can the TypeText delay in Watin be reduced?


How does one reduce the delay between keypresses in the TypeText method of Watin? Is there a better way if I want to "instantaneously" type some text?


Solution

  • The answer is to .ClickNoWait() on the element, and then just set its .Value property.

    Hope this helps someone.