Estoy tratando de hacer clic en una extensión de Chrome ( Google Highlight : https://chrome.google.com/webstore/detail/multi-highlight/pfgfgjlejbbpfmcfjhdmikihihddeeji ) y luego haga clic en el cuadro de texto y pegue mis variables.
aquí está mi código
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
Lo he intentado, pero la mayoría de las veces falla.
Cuando intento hacer clic en el campo de texto (CLICK 2) siempre tengo un error :
haga clic en el proceso "Google Chrome" en {4000, 114} --> valor perdido
Sin embargo si hago lo mismo para el CLICK 1 no tengo ningún error.
¿Puede darme algún consejo?