Estoy buscando ayuda para corregir este error:
error "Los eventos del sistema obtuvieron un error: no se puede obtener el elemento del menú" Borrar historial ... "del menú" Safari "de la barra de menús 1 del proceso" Safari ". Número -1728 del elemento de menú "Borrar historial ..." del menú "Safari" de la barra de menús 1 del proceso "Safari"
Mi código es:
tell application "Safari"
launch
activate
if not (exists document 1) then
make new document at front
end if
end tell
delay 1
tell application "System Events"
keystroke "e" using {option down, command down}
tell process "Safari"
tell menu bar 1
tell menu "Safari"
tell menu item "Clear History..."
click
every UI element
end tell
end tell
end tell
tell window 1
tell sheet 1
tell button "Clear History"
click
end tell
end tell
end tell
tell menu bar 1
tell menu bar item "Develop"
tell menu 1
click menu item "Empty Caches"
end tell
end tell
end tell
end tell
end tell