如何使用RAutomation将"ALT"+"s“键发送到窗口?在谷歌上根本没有任何信息。
发布于 2016-08-20 03:17:16
未经测试,但您应该能够使用send_keys。确切的语法取决于所选的适配器类型。以下是Win32适配器的示例:
RAutomation::Window.new(:title => //).send_keys "hello!"
RAutomation::Window.new(:title => //).send_keys [:control, "a"], "world!"https://stackoverflow.com/questions/39046093
复制相似问题