Sto provando a chiudere tutti i browser attivi utilizzando il codice seguente, ma non riesco a ottenere l'elenco di tutti i browser attivi per uscire.
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