Necesito un AppleScript para seleccionar un campo de texto específico de un área, pegar un texto y hacer clic en entrar.
He inspeccionado el campo de texto (investigación).
Aquí está el resultado:
<input placeholder="Search Value" id="quickSearchValue" type="text" value="ertet" name="7.7.7.7">
Esto es lo que intenté hasta ahora, pero sin ningún éxito:
tell application "Safari"
activate
delay 3
tell application "System Events"
keystroke (the clipboard)
end tell
delay 0.3
tell document 1
do JavaScript "document.getElementById('7.7.7.7').click();"
end tell
end tell