Estoy tratando de automatizar un proceso de inicio de sesión junto con otras cosas. Encontré este script en alguna parte, pero el botón en el que intento hacer clic no tiene ID.
tell application "Google Chrome"
activate
open location "https://members.merchinformer.com/login"
set theTab to tab 1 of window 1
repeat
if (loading of theTab) is false then exit repeat
end repeat
set theURL to URL of theTab
if theURL contains "login" then
execute theTab javascript "document.getElementById('login-button').click();"
end if
end tell
Intenté varios métodos para hacer clic en él, pero sin éxito. ¿Alguna forma de evitarlo?