我正在尝试单击Chrome扩展程序(Google突出显示:https : //chrome.google.com/webstore/detail/multi-highlight/pfgfgjlejbbpfmcfjhdmikihihddeeji),然后在文本框上单击并覆盖我的变量。
这是我的代码
set NoteforGoogleCHrome to "My text should be there"
tell application "Google Chrome"
activate
end tell
tell application "System Events"
tell process "Google Chrome"
delay 2
click button 8 of toolbar 2 of window "myTab" of application process "Google Chrome" of application "System Events"
delay 0.2
keystroke tab
delay 0.2
keystroke NoteforGoogleCHrome
delay 0.2
keystroke space
end tell
end tell
我试过了,但这在大多数情况下都是失败的。
当我尝试单击文本字段时(单击2),我总是遇到错误:
在{4000,114}处单击过程“ Google Chrome”->缺少值
但是,如果我对“点击1”执行相同操作,则不会出错。
你能给我一些建议吗?