J'aimerais créer un AppleScript qui enregistre tous les onglets ouverts dans la fenêtre avant de Google Chrome dans un PDF.
Voici mon MWE de travail jusqu'à présent :
tell application "Google Chrome"
set allTabs to tabs in front window
repeat with myTab in allTabs
tell myTab to print
end repeat
end tell
Bien sûr, cela ne fait qu'ouvrir la fenêtre d'impression à plusieurs reprises pour chaque onglet ouvert.
Idéalement, je pourrais enregistrer chacun d'entre eux dans un PDF distinct, quelque chose comme ceci (en utilisant des commandes inventées ici) :
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
Comment faire pour que cela fonctionne ?