2

为了开发目的,我必须关闭并重新打开它,例如每天 100 次,打开 Web 检查器禁用缓存、清除缓存、开始调试 javascript 以及偶尔清除本地数据库所花费的额外时间变得乏味。

4

1 回答 1

1

这是我编写的用于启动 Safari Inspector 的 AppleScript。您可以将其导出为可执行应用程序,然后将其放在您的 Dock 中,只需单击一下即可进入 Inspector。您也可以在 Xcode 的构建阶段启动它,以便在您的应用程序发送到模拟器时运行它。根据需要将“iPad Simulator”更改为“iPone Simulator”或连接的设备。

tell application "Safari"
    activate
    delay 2
    tell application "System Events"
        tell process "Safari"
            set frontmost to true
            click menu item 2 of menu 1 of menu item "iPad Simulator" of menu 1 of menu bar item "Develop" of menu bar 1
        end tell
    end tell
end tell
于 2013-04-29T23:21:58.783 回答