Apple script to click "always allow" codesign access is not working

633 Views Asked by At

i was trying to use an apple script to auto click the "always allow" button in codesign dialogue while building ios app from command line. but the script seems to throw an error. am not an expert in dealing with apple scripts. here is the script

tell application "System Events"
    if (exists process "SecurityAgent") then
        tell window 1 of process "SecurityAgent"
            click button "Always Allow" of group 1
        end tell
    end if
end tell

and the error am getting while running is

error "System Events got an error: Can’t get group 1 of window 1 of process \"SecurityAgent\". Invalid index." number -1719 from group 1 of window 1 of process "SecurityAgent"

enter image description here

any help would be appreciated.
Thank you.

1

There are 1 best solutions below

0
On

It seems that you have to focus the window first. For some reason the accessibility engine doesn't consider it to exist otherwise.

#!/usr/bin/osascript

tell application "System Events"
    if (exists process "SecurityAgent") then
        tell process "SecurityAgent"
            activate
            set frontmost to true
        end tell
        tell window 1 of process "SecurityAgent"
            click button "Always Allow"
        end tell
    end if
end tell