我正在尝试使用 Applescript 单击 Safari 中的按钮。
我知道代码应该是这样的:
tell application "System Events"
tell process "Safari"
click button " ENTER " of group 1 of ... of group 1 of window 1
end tell
end tell
但我找不到正确的系列“group of group of”。
使用 UI Inspector,我得到了这个:
有什么帮助吗?我需要写什么以及为什么?
多谢。
答案1
尝试这个:
tell application "System Events"
tell process "Safari"
get every button of every group of every UI element of every scroll area of every group of every group of every group of window "CHALCO.net"
end tell
end tell
按钮的位置应该在结果中。