我正在尝试使用以下代码退出所有活动浏览器,但无法获取要退出的所有活动浏览器的列表,我尝试了以下代码...请建议..
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