Me gustaría crear un AppleScript que guarde todas las pestañas abiertas en la ventana frontal de Google Chrome en un PDF.
Aquí está mi MWE trabajando hasta ahora:
tell application "Google Chrome"
set allTabs to tabs in front window
repeat with myTab in allTabs
tell myTab to print
end repeat
end tell
Por supuesto, esto simplemente abre la ventana de impresión repetidamente para cada pestaña abierta.
Idealmente, podría guardar cada uno en un PDF distinto, algo como esto (usando algunos comandos inventados aquí):
tell application "Google Chrome"
set myFolder to "/Users/nnn/Desktop/PDF/"
set myCount to 0
repeat with myTab in allTabs
set myCount to myCount + 1
set fileName to "pdf" & myCount & ".pdf"
set outputPath to myFolder & fileName
export myTab to outputPath as PDF -- obviously, this does not work.
end repeat
end tell
¿Cómo lograría que esto funcione?