Il mio applescript è scritto come segue:
tell application "System Events"
get every static text of UI element 1 of row 1 of table 1 of scroll area 1 of sheet 1 of window "Settings" of application process "NordVPN IKE"
end tell
produce
{static text "United States #2632" of UI element "United States #2632" of row 1 of table 1 of scroll area 1 of sheet 1 of window "Settings" of application process "NordVPN IKE" of application "System Events"}
Fin qui tutto bene.
Con un po 'di magia di copia-incolla, il mio applescript ora legge:
tell application "System Events"
click static text "United States #2632" of UI element "United States #2632" of row 1 of table 1 of scroll area 1 of sheet 1 of window "Settings" of application process "NordVPN IKE"
end tell
Il Result
è missing value
. Non dice indice non valido o qualcosa del genere ma non fa clic sul testo. Come faccio a fare clic sul testo?