我正在尝试使用AppleScript来导航iTunes。到目前为止这是有效的,但我无法点击"查看全部"链接/文字(下图)。
您可能会注意到有两个"查看全部"链接,一个用于iPhone,另一个用于iPad。我想点击iPhone上的那个。
非常感谢任何指导!
答案 0 :(得分:1)
在脚本编辑器中运行此代码:
tell application "System Events" to tell application process "iTunes"
get static texts of UI elements of UI elements of UI element 1 of scroll area 1 of splitter group 1 of window 1 whose name is "See All"
end tell
这应该可以获得名为“See All”的所有静态文本。使用反复试验,直到找到正确的。
我使用的技巧是使用“UI元素的UI元素的静态文本”等,直到找到我正在寻找的静态文本。你应该可以用任何东西做到这一点。寻找按钮?将static texts
替换为buttons
等