以下是我的AppleScript脚本的一部分,该脚本应点击Google Chrome当前标签中名为“connect”的元素。
tell app "Google Chrome"
do JavaScript "document.getElementsByName('connect').click();" in current tab of first window
end
运行时,它返回以下语法错误:
预期的行尾但找到了标识符。
我怎样才能让它发挥作用?
答案 0 :(得分:3)
没关系。我想通了。
以下是代码:
tell application "Google Chrome"
execute front window's active tab javascript "document.getElementsByName('connect')[0].click()"
end tell