applescript & Automator配置safari simulator快捷键

如果你已经厌烦用鼠标操作来打开safari中的“开发->simulator->Url”来打开调试工具的话,这篇文章能帮助到你

本文中的脚本可以在github中查看
https://github.com/realjade/open-safari-simulator-applescript

配置Automator服务

1)在Launchpad中找到Automator,应该在《其他》里面,然后打开

applescript & Automator配置safari simulator快捷键_第1张图片
Automator图标.png

2)在选取文稿类型的弹框中选择“服务”,然后点击选取,如下图:

applescript & Automator配置safari simulator快捷键_第2张图片
选取文稿类型弹框.png

3)在“服务”收到的选择框中选择“没有输入”

applescript & Automator配置safari simulator快捷键_第3张图片
Paste_Image.png

4)在“实用工具 -> 《双击》运行AppleScript ”,会出现右边的“运行AppleScript”脚本编写框

applescript & Automator配置safari simulator快捷键_第4张图片
Paste_Image.png

5)把下面的脚本全部替换到框中即可
本文中的脚本可以在github中查看
https://github.com/realjade/open-safari-simulator-applescript

set urls to {}
tell application "System Events"
    tell process "Safari"
        set developMenu to menu 1 of menu item "Simulator" of menu 8 of menu bar 1
        set allUIElements to entire contents of developMenu
        
        repeat with anElement in allUIElements
            try
                set tmpName to name of anElement
                log "sims: " & tmpName
                set boolName to (offset of "." in tmpName) is not 0
                
                if boolName is true then
                    set urls to urls & tmpName
                end if
            end try
        end repeat
        log urls
    end tell
end tell
set urlLen to count of urls

if urlLen is 0 then
    display dialog "没有在模拟器中找到能debug的url"
else if (urlLen is 1) then
    tell application "Safari"
        activate
        tell application "System Events"
            tell process "Safari"
                click menu item (item 1 of urls) of menu 1 of menu item "Simulator" of menu 8 of menu bar 1
            end tell
        end tell
    end tell
else
    tell application "System Events"
        activate
        set chooseUrl to choose from list urls with title "请选择您的URL" default items (item 1 of urls)
    end tell
    if chooseUrl is not false then
        tell application "Safari"
            activate
            tell application "System Events"
                tell process "Safari"
                    click menu item (item 1 of chooseUrl) of menu 1 of menu item "Simulator" of menu 8 of menu bar 1
                end tell
            end tell
        end tell
    end if
end if
applescript & Automator配置safari simulator快捷键_第5张图片
Paste_Image.png

保存完后,自己点击运行按钮,看下是否可用。

如果脚本有更新,则在Automator里面,“文件->打开最近使用”选择自己的创建的服务,然后更新下脚本即可

applescript & Automator配置safari simulator快捷键_第6张图片
Paste_Image.png

6)保存,command+s。输入服务名称:safari-simulator-debug。名字随意自己起就好了

Paste_Image.png

以上applescript & Automator配置完成

配置快捷键

1)打开“系统偏好设置 -> 键盘 -> 快捷键 -> 服务”

applescript & Automator配置safari simulator快捷键_第7张图片
Paste_Image.png

2)在右边的列表中找到“通用 -> safari-simulator-debug”,然后点击右边的“添加快捷键”,设置成command+alt+i,和chrome打开开发者工具的快捷键一样

applescript & Automator配置safari simulator快捷键_第8张图片
Paste_Image.png

3)打开xcode模拟器,然后打开一个webview的页面,按下快捷键command+alt+i,注意:让xcode的simulator处于活动状态再按快捷键,就会执行我们刚才的applescript脚本。如果只有一个url则会自动打开该URL,如果多于1个则会让你进行选择需要打开的url,选择一个URL即可。如下图:

applescript & Automator配置safari simulator快捷键_第9张图片
多个URL情况.png

以上配置完成。

Q&A

1)Q:


applescript & Automator配置safari simulator快捷键_第10张图片
运行错误

A:
主要是因为“Xcode Simulator”没有权限,需要把权限添加进去
权限加好以后,还会出现这种错误,应该是safari没启动起来,点击“OK”后,再执行一遍
打开“系统偏好设置->安全性与隐私->隐私->辅助功能”加上“Xcode Simulator”,

Paste_Image.png
  • 由于点击“+”的时候选择Simulator时找不到的话可以这样添加:
    1)在图标出右键,然后“选项->在Finder中显示”


    Paste_Image.png

    2)把打开的图标拖到框里面即可添加成功。

Paste_Image.png

其他选项加上也可以:

applescript & Automator配置safari simulator快捷键_第11张图片
Paste_Image.png
applescript & Automator配置safari simulator快捷键_第12张图片
Paste_Image.png
applescript & Automator配置safari simulator快捷键_第13张图片
Paste_Image.png
Paste_Image.png

接下来继续研究怎么一键配置,敬请期待...
alfred workflow
已经上传到github仓库了

你可能感兴趣的:(applescript & Automator配置safari simulator快捷键)