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?