Estoy tratando de salir de todos los navegadores activos utilizando el siguiente código, pero no puedo conseguir la lista de todos los navegadores activos para salir.
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