所以我的问题是在磁盘战士中,“目录”窗格下有一个下拉窗口,我无法让applescript“单击”。无论如何告诉applescript“单击”下拉窗口,然后从列表中单击一个磁盘?我的老板希望整个代码自动化,这是我不确定我是否可以自动化的一部分。这是我的代码:
do shell script "open /Applications/DiskWarrior.app"
delay 3
tell application "System Events"
keystroke "my password"
delay 2
keystroke return
delay 3
keystroke tab
delay 3
keystroke return
delay 20
--Delay 20 to allow time for the application to fully load
end tell
打开diskwarrior后,下一步是选择我要重建的磁盘,但正如我所说,我不确定如何告诉applescript“点击”它。
有人有什么建议吗?