I have the window of the picture above, save the configuration through stand-alone save, AppleScript can not click Save through click, the following script returns missing value, please ask in AppleScript, how to click static text
tell application "System Events"
tell process "WeChat"
click menu item "Proxy Settings..." of menu "WeChat" of menu bar 1
click radio button "Don't Use" of window "Proxy Settings"
delay 1
set focused to true
click static text "Save" of window "Proxy Settings"
end tell
end tell
```[enter image description here](https://i.sstatic.net/ZWJ9V.png)
tell application "System Events" tell process "WeChat" click menu item "Proxy Settings..." of menu "WeChat" of menu bar 1 click radio button "Don't Use" of window "Proxy Settings" delay 1 set focused to true click static text "Save" of window "Proxy Settings" end tell end tell