Applescript per eseguire javascript su chrome

0

C'è un modo per eseguire un Javascript usando AppleScript

qui c'è il JS:

javascript:Array.from(document.getElementsByClassName('action-button')).forEach(function(v){v.removeAttribute("disabled");});

Ho provato questo

tell application "Google Chrome"
    tell tab 2 of window 1 to set RemoveBtRestriction to execute javascript "javascript:Array.from(document.getElementsByClassName('action-button')).forEach(function(v){v.removeAttribute("disabled");});"
end tell

ma restituisce l'errore "La fine della linea prevista ma l'identificatore trovato"

    
posta Kevin 04.05.2018 - 17:17
fonte

1 risposta

1

Prova ad aggiungere virgolette singole attorno alla parola "disabled" . Così ...

tell application "Google Chrome"
    tell tab 2 of window 1 to set RemoveBtRestriction to execute javascript ¬
        "javascript:Array.from(document.getElementsByClassName('action-button'))
.forEach(function(v){v.removeAttribute('disabled');});"
end tell

Non ho un URL per testarlo, ma almeno il codice viene compilato ora

    
risposta data 04.05.2018 - 21:33
fonte

Leggi altre domande sui tag