Applescript: guarde todas las pestañas abiertas en Chrome en PDF

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 de trabajo 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 haría que esto funcione?

¿Puedes usar una url para pdf api?
@JBis, no tengo ningún problema con eso, pero las páginas web en cuestión requieren un inicio de sesión en Amazon, por lo que una aplicación que solo realiza una descarga por lotes de URL probablemente no funcionará.
Todo lo que veo en línea está usando los menús contextuales y los clics para hacer cosas. No me gusta/no sé cómo hacer esas cosas. Si encuentro una manera de prescindir de eso. Entonces intentaré ayudar. ¡Buena suerte!
Probablemente no sea muy seguro, pero tal vez si usáramos JS para obtener el HTML fuente y luego lo alimentáramos a través de una API.
Obviamente, Safari y Firefox también están sobre la mesa, o cualquier cosa que pueda descubrir que estoy conectado a Amazon.

Respuestas (1)

Encontré una solución, usando secuencias de comandos de interfaz de usuario, que hace lo que necesito:

tell application "Google Chrome"
    set myWindow to front window
    set myTabs to tabs in myWindow


    set outputFolder to "/Users/nnn/Desktop/PDF/"
    set myCount to 0

    activate

    repeat with myTab in myTabs
        set myCount to myCount + 1
        set fileName to "pdf" & myCount & ".pdf"
        set outputPath to outputFolder & fileName

        --N.B.: the following opens the system print window, not Google Chrome’s
        tell myTab to print

        tell application "System Events"
            tell process "Google Chrome"
                repeat until window "Print" exists
                    delay 0.02
                end repeat

                set printWindow to window "Print"

                tell printWindow
                    set myButton to menu button "PDF"
                    click myButton

                    repeat until exists menu 1 of myButton
                        delay 0.02
                    end repeat

                    set myMenu to menu 1 of myButton
                    set myMenuItem to menu item "Save as PDF" of myMenu
                    click myMenuItem

                    repeat until exists sheet 1
                        delay 0.02
                    end repeat

                    set saveSheet to sheet 1
                    tell saveSheet
                        set value of first text field to fileName
                        keystroke "g" using {command down, shift down}

                        repeat until exists sheet 1 of saveSheet
                            delay 0.02
                        end repeat

                        set goDialogue to sheet 1 of saveSheet

                        tell goDialogue
                            set value of first combo box to outputFolder
                            click button "Go"
                        end tell

                        click button "Save"
                    end tell
                end tell

                repeat while printWindow exists
                    delay 0.02
                end repeat
            end tell
        end tell
    end repeat
end tell
¿Esto guardará archivos PDF para CADA pestaña? ¿O solo los que tienen archivos PDF actualmente en ellos?