Applescript para ejecutar javascript en Chrome

0

¿Hay alguna manera de ejecutar un Javascript usando AppleScript

aquí está el JS:

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

Probé esto

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

pero esto devuelve el error "Se esperaba el final de la línea pero se encontró el identificador".

    
pregunta Kevin 04.05.2018 - 17:17

1 respuesta

1

Intenta agregar comillas simples alrededor de la palabra "disabled" . Me gusta esto ...

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

No tengo una URL para probarlo, pero al menos el código se compila ahora

    
respondido por el wch1zpink 04.05.2018 - 21:33

Lea otras preguntas en las etiquetas