在Python脚本中运行AppleScript

时间:2018-07-18 22:47:12

标签: python macos accessibility

我正在尝试在Python脚本中运行AppleScript,但是它不起作用。当我在AppleScriptEditor中运行相同的AppleScript时,它运行完美!

这是我的代码:

script = '''
            tell application "System Events"
                set position of first window of application process "%(app)s" to {100, 100}
            end tell
            ''' % {'app': app}

        print(script)

        p = Popen(['osascript', '-'], stdin=PIPE, stdout=PIPE, stderr=PIPE, universal_newlines=True)
        stdout, stderr = p.communicate(script)

我正在打印脚本,并且传送正确

tell application "System Events"
                set position of first window of application process "Terminal" to {100, 100}
            end tell

但是我不知道为什么它不移动“终端”窗口。有想法吗?

1 个答案:

答案 0 :(得分:1)

很可能不允许Python进程触摸窗口。操纵Windows的其他进程是一项特权操作,需要将您的应用列入白名单。参见https://apple.stackexchange.com/questions/291574/osascript-is-not-allowed-assistive-access-1728

要查看是否是这种情况,请检查从Popen返回的stderr值,并查看其中是否包含“不允许osascript进行辅助访问”之类的内容。

编辑:在Mojave中,Apple Events现在是沙箱,必须由用户批准。 https://mjtsai.com/blog/2018/06/28/apple-event-sandboxing-in-macos-mojave-lacks-essential-apis/