J'essaie d'automatiser un clic sur un bouton radio par identifiant. En utilisant la syntaxe que j'ai trouvée en ligne, j'ai créé ce script mais il ne sélectionne pas le bouton radio. Quelqu'un peut-il me corriger ?
# 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