Я намагаюся вийти з усіх активних браузерів за допомогою наведеного нижче коду, але не можу отримати список усіх активних браузерів, які потрібно вийти.
tell application "System Events"
set appList to every process whose visible is true
repeat with thisApp in appList
tell process browser
quit
end tell
end repeat
end tell