Applescript JavaScript“行尾但找到标识符”控制谷歌浏览器时出错

时间:2015-03-26 19:38:52

标签: javascript applescript

以下是我的AppleScript脚本的一部分,该脚本应点击Google Chrome当前标签中名为“connect”的元素。

tell app "Google Chrome"
do JavaScript "document.getElementsByName('connect').click();" in current tab of first window
end

运行时,它返回以下语法错误:

  

预期的行尾但找到了标识符。

我怎样才能让它发挥作用?

1 个答案:

答案 0 :(得分:3)

没关系。我想通了。

以下是代码:

tell application "Google Chrome"
    execute front window's active tab javascript "document.getElementsByName('connect')[0].click()"
end tell