vote up 0 vote down star

I wonder if anyone knows how to use Win32 to automate a keystroke using Ruby?

flag

24% accept rate
You want to pass a keystroke to the System? isn't that kind of invasive? like pressing Alt+F4 multiple times closing everything. – ONi Jul 24 at 5:11
i know how to automate a click and wonder how to do that for a keystroke – Jian Lin Jul 24 at 5:16

1 Answer

vote up 2 vote down check

I recommend checking out Ian Dees' Scripted GUI Testing With Ruby. This example of sending keystrokes to a Windows program comes from the book's 2nd chapter. The supporting script is available here.

# START:typing
"this is some text".upcase.each_byte do |b| #<callout id="co.upcase"/>
  keybd_event.call b, 0, KEYEVENTF_KEYDOWN, 0
  sleep 0.05
  keybd_event.call b, 0, KEYEVENTF_KEYUP, 0
  sleep 0.05
end
# END:typing

I highly-recommend this book for anyone doing platform-specific, or cross-platform GUI automation and testing.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.