What I tend to do is once theOnce "Are you still there?" messagemessages pops up, I right click, inspect, copy the selector, then do this in the console:
# paste your selector in this variable selector = "#j_idt473 > div.modal-footer > a.btn.btn-primary.btn-sm" document.querySelector(selector).click() If that works, I then put it in a intervalID = window.setInterval(callback, milliseconds) call. I stop the loop with window.clearInterval(intervalID) if needed.
Not sure if you'd consider a realtime hack, this is StackOverflow after all.