* Så talte Jarmo <[email protected]>:
> Sorry for answering so late - so in the essence, what's the difference
> between these two invocations: send_keys(["hello", :control, "i"])
> send_keys("hello", [:control, "i"]) Does it mean that the first one presses
> hello and "control + i" and then releases the keys and the second one
> releases "hello" keys before sending "control + i"?
As far as I understand this:
Your first example, send_keys('hello', :control, 'i') will not press C-i at
all. It will type "hello", press Control, release Control, then type "i".
The second example, send_keys('hello', [:control, 'i']) will type "hello", hold
down Control, press i, then release Control.
_______________________________________________
Wtr-development mailing list
[email protected]
http://rubyforge.org/mailman/listinfo/wtr-development