在 Google Chrome 浏览器(在 Mac 上)中,您可以通过在 htttp://google.com 中按 Command+Shift+Period 来激活 Google 语音搜索。
假设 url http://google.com加载在 chrome 选项卡中,搜索框处于焦点位置,下面的 applescript 不应该工作吗?
tell application "Google Chrome"
activate
tell application "System Events" to keystroke "." using {command down, shift down}
end tell
由于某种原因它不起作用,我不明白为什么,因为以下脚本将按预期用文本填充搜索字段:
tell application "Google Chrome"
activate
tell application "System Events" to keystroke "this test works as expected"
end tell
如何使用脚本触发谷歌语音搜索?