我尝试制作一个Applescript,以便在“系统偏好设置”中“网络”设置的“高级..”菜单中启用“Web代理”和“安全Web代理”选项。
到目前为止这是我的苹果..
tell application "System Preferences"
activate
set current pane to pane "com.apple.preference.network"
end tell
tell application "System Events"
tell application process "System Preferences"
tell window "Network"
click button "Advanced…"
tell tab group 1 of sheet 1
click radio button "Proxies"
tell group 1
//what to do here to change Web Proxy and Secure Web Proxy Checkboxes?
end tell
end tell
end tell
end tell
end tell
我无法更改“Web代理”和“安全Web代理”设置的值,因为它们没有可访问性检查器所示的标题。
有没有其他方法可以使用类似我上面尝试的Applescript来启用/禁用复选框?
答案 0 :(得分:0)
在/ usr / sbin / networksetup中有一个名为“networksetup”的命令行工具。我没有太多使用它,但查看手册页有关于代理的几个方面。这是我看到的一对......
[-getwebproxy networkservice]
[-setwebproxy networkservice domain portnumber authenticated username password]
[-setwebproxystate networkservice on | off]
[-getsecurewebproxy networkservice]
[-setsecurewebproxy networkservice domain portnumber authenticated username password]
[-setsecurewebproxystate networkservice on | off]
所以使用这些的“do shell script”命令应该可以完成这项工作。不幸的是,我无法帮助你解决具体的命令,但祝你好运。
顺便说一下,在手册页的示例中,它显示了这些......
networksetup -setwebproxy "Built-in Ethernet" proxy.company.com 80
networksetup -setwebproxy "Built-In Ethernet" proxy.company.com 80 On authusername authpassword