对于Safari 8浏览器,在MAC上需要使用applescript来清除cookie

时间:2015-06-05 14:38:30

标签: applescript

我需要使用applescript执行以下操作。

  • 启动Safari,
  • 点击"清除历史记录和网站数据"在Safari菜单栏上,
  • 点击"清除历史记录"按钮,
  • 关闭safari浏览器。

我尝试使用以下代码:

tell application "Safari" to activate 
tell application "System Events"
  click menu item "Clear History and Website Data…" of menu "Safari" of menu bar item "Safari" of menu bar 1 of application process "Safari"
  delay 1
  click button "Clear History" of pop up "Safari"
  quit
end tell

1 个答案:

答案 0 :(得分:0)

notin4(X,L):- not(set_equal([_,_,_,X],L).