AppleScript: abre la URL en una pestaña específica (Google Chrome)

0

Ya no puedo abrir una URL en una pestaña específica usando AppleScript. Probé el siguiente código sin éxito:

set URL of tab 1 to "https://"

y

set myLink to "https://"
tell application "Google Chrome"
    activate
    tell front window to make new tab 1 with properties {URL:myLink}
end tell

ninguno de los cuales realiza la acción deseada.

Pregunta
¿Qué necesito cambiar en el código para poder realizar esta tarea?

    
pregunta Kevin 09.03.2018 - 07:28

1 respuesta

1

Esto me funciona en la última versión de macOS Sierra

set myLink to "https://google.com/"

tell application "Google Chrome"
    tell its window 1
        set theTabs to count of tabs -- how mmany open tabs
        set URL of tab 1 to myLink -- insert desired tab
        --set URL of (make new tab) to myLink
    end tell
end tell
    
respondido por el wch1zpink 09.03.2018 - 08:07

Lea otras preguntas en las etiquetas