Non riesco più ad aprire un URL in una scheda specifica utilizzando AppleScript. Ho provato il seguente codice senza successo:
set URL of tab 1 to "https://"
e
set myLink to "https://"
tell application "Google Chrome"
activate
tell front window to make new tab 1 with properties {URL:myLink}
end tell
nessuno dei quali esegue l'azione desiderata.
Domanda
Cosa devo modificare nel codice per poter eseguire questa attività?