我正在尝试使用苹果脚本在系统偏好设置中打开 2 个代理(我必须使用它来访问此站点),但我无法让脚本单击复选框。代码如下:
tell application "System Preferences" to set current pane to pane "com.apple.preference.network"
tell application "System Events" to tell process "System Preferences" to tell window "Network"
click button "Advanced…"
delay 2
tell TabGroup of sheet 1
tell radio button "proxies"
click
end tell
end tell
end tell
我希望代码单击代理选项卡中的 http 和 https 代理框,它们是高级向下滑动选项卡的一部分,但我不知道“路径”是什么。有人可以帮我吗?谢谢;)