AppleScript에서 OSX 방화벽의 수신 연결 허용 버튼을 자동으로 누릅니다.
3715 단어 AppleScript
AppleScript 등으로 Charles에서의 로그취소 등 자동화를 하는데 있어서, 허가 버튼을 자동적으로 누를 필요가 있었으므로 조사했다. 다음과 같은 AppleScript를 쓰면 대화 상자의 텍스트에 "Charles.app"가 있을 때만 허가 버튼을 누를 수 있다.
구체적으로는, 이 다이얼로그는 UserNotificationCenter라고 하는 프로세스가 표시하고 있는 것 같기 때문에, 그 프로세스에 대해서 AppleScript를 실행하고 있다.
tell application "System Events"
-- ダイアログはUserNotificationCenterプロセスが表示しているので、まずはUserNotificationCenterプロセスの有無を確認
if "UserNotificationCenter" is in (get name of processes whose background only is true) then
tell process "UserNotificationCenter"
tell window 1
-- first static textは『アプリケーション"Charles.app"へのネットワーク……』という文字列を保持している
if value of first static text contains "Charles.app" then
click button "許可"
end if
end tell
end tell
end if
end tell
구현에 있어서, 이하의 사이트를 참고로 했다.
Reference
이 문제에 관하여(AppleScript에서 OSX 방화벽의 수신 연결 허용 버튼을 자동으로 누릅니다.), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/katz/items/49e7b87dd8841ae7e5e5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)