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"
any help would be appreciated.
Thank you.
It seems that you have to focus the window first. For some reason the accessibility engine doesn't consider it to exist otherwise.