Estoy intentando automatizar un clic en un botón de radio por ID. Usando la sintaxis que encontré en línea, he creado este script pero no está seleccionando el botón de opción ¿Alguien me puede corregir?
# Launch a new private window
tell application "System Events"
tell process "Safari"
tell menu bar 1
click menu bar item "File"
tell menu "File"
click menu item "New Private Window"
end tell
end tell
end tell
end tell
tell application "Safari"
open location "https://www.nngroup.com/articles/checkboxes-vs-radio-buttons/"
delay 3
tell application "System Events" to keystroke space
do JavaScript "document.getElementById('two').click();"
end tell