如何使用applescript输入提示窗口的密码

时间:2013-05-30 06:33:18

标签: automation applescript

我是对Applecript的新手,目前卡在访问提示窗口,要求输入密码。

我正在为日常使用应用程序创建一个启动器,我希望自动启动启动过程。

目前,我只推出了两个应用程序VirtualHostX和MAMP。后来我可能会添加一些。

这是我到目前为止所做的事情:

tell application "VirtualHostX" to activate
tell application "MAMP" to activate

tell application "System Events"
    tell process "VirtualHostX"
        tell menu bar 1
            tell menu bar item "Web Server"
                tell menu 1
                    click menu item "Start"
                end tell
            end tell
        end tell
    end tell
end tell

启动时,它会成功启动两个应用程序,但虚拟主机会询问我的密码以进行授权。我想在流程或代码中集成输入密码。我已经尝试谷歌寻求答案,但未能找到解决方案。

我无法定位该窗口并输入我的密码。 enter image description here

让我知道我错过了什么。

谢谢。

2 个答案:

答案 0 :(得分:6)

SecurityAgent显示密码对话框:

tell application "System Events" to tell process "SecurityAgent"
    set value of text field 2 of scroll area 1 of group 1 of window 1 to "password"
    click button 2 of group 2 of window 1
end tell

答案 1 :(得分:1)

对于Yosemite,SecurityAgent对话框是不同的。这将有效:

tell application "System Events"
    tell process "SecurityAgent"
        set value of text field 2 of window 1 to "yourPassword"
        click button 2 of window 1
    end tell
end tell