Js automatizar un clic

setInterval(() => {
    document.querySelector('#someId').click()
}, 1000)
Matt Miller