4

我需要从命令行“重新加载”一个 Safari 扩展(稍后还要构建包)。

如何才能做到这一点?

为什么?

我想一步构建——我的代码在 CoffeeScript 中,因此无论如何我都在编译它。

我尝试了什么?

除了绝望地谷歌搜索之外,我还尝试使用这个 AppleScript:

tell application "System Events"
   tell process "Safari"
       click the button "Reload" of window "Extension Builder"
   end tell
end tell

哪些错误:

系统事件出现错误:无法获取进程“Safari”的窗口“Extension Builder”的“重新加载”按钮。

而这种变化:

tell application "System Events"
    tell process "Safari"
       tell button "Reload" of window "Extension Builder" to perform action
    end tell
end tell

这不会给出错误,但实际上也没有做任何事情。

4

2 回答 2

5

可能是按钮没有像您期望的那样“命名”。查看UI Browser以查看应用程序的界面层次结构以用于 GUI 脚本。

“重新加载”按钮可通过以下方式访问:

click button "Reload"  of UI element "ReloadUninstall[NAME OF EXTENSION HERE]" \
  of UI element 1 of scroll area 1 of window "Extension Builder"
于 2011-04-10T14:31:33.293 回答
2

自从编写了接受的答案以来,扩展浏览器的视图层次结构似乎发生了变化。这个脚本对我有用:

tell application "System Events"
    tell process "Safari"
         click button "Reload" of UI element 0 of window "Extension Builder"
    end tell
end tell

请注意,需要打开 Safari 和 Extension Builder 窗口才能使其正常工作

于 2016-06-16T15:34:04.580 回答