mirror of
https://github.com/actions/runner-images.git
synced 2025-12-11 03:27:05 +00:00
--------- Co-authored-by: sureshe456 <160699174+sureshe456@users.noreply.github.com> Co-authored-by: Erik Bershel <110455084+erik-bershel@users.noreply.github.com>
35 lines
864 B
AppleScript
35 lines
864 B
AppleScript
# This AppleScript clicks "Allow" for "System Software from developer "Parallels International GmbH"
|
|
# Steps:
|
|
# - Open System Settings -> Privacy & Security
|
|
# - Click 'Allow' for 'System Software from developer "Parallels International GmbH'
|
|
# - Enter password for runner
|
|
|
|
on run argv
|
|
set userpassword to item 1 of argv
|
|
|
|
tell application "System Settings"
|
|
activate
|
|
delay 5
|
|
end tell
|
|
|
|
tell application "System Events"
|
|
tell process "System Settings"
|
|
set frontmost to true
|
|
repeat until exists window 1
|
|
delay 2
|
|
end repeat
|
|
|
|
tell splitter group 1 of group 1 of window 1
|
|
select row 27 of outline 1 of scroll area 1 of group 1
|
|
delay 5
|
|
click UI element 1 of row 27 of outline 1 of scroll area 1 of group 1
|
|
delay 5
|
|
keystroke userpassword
|
|
delay 5
|
|
keystroke return
|
|
delay 5
|
|
end tell
|
|
end tell
|
|
end tell
|
|
end run
|