以下のコードを使用してすべてのアクティブなブラウザを終了しようとしていますが、終了するすべてのアクティブなブラウザのリストを取得できません。以下のコードを試してみました...plsが提案します。
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