我如何发送" ALT" +" s"使用RAutomation的窗口键?谷歌根本没有信息。
答案 0 :(得分:1)
未经测试,但您应该可以使用send_keys
。确切的语法取决于所选的适配器类型。以下是Win32
适配器的示例:
RAutomation::Window.new(:title => //).send_keys "hello!"
RAutomation::Window.new(:title => //).send_keys [:control, "a"], "world!"
答案 1 :(得分:0)