Skip to main content
removing extraneous text
Source Link
Pat Myron
  • 4.7k
  • 4
  • 30
  • 52

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.

What I tend to do is once the "Are you still there?" message 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.

Once "Are you still there?" messages 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.

Source Link
Bruno Bronosky
  • 71.4k
  • 15
  • 180
  • 159

What I tend to do is once the "Are you still there?" message 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.