Skip to content

Instantly share code, notes, and snippets.

@liamness
Created October 17, 2019 16:47
Show Gist options
  • Save liamness/ae60f387c34029ae355ef1d847b2402a to your computer and use it in GitHub Desktop.
Save liamness/ae60f387c34029ae355ef1d847b2402a to your computer and use it in GitHub Desktop.
/*
Trying to use Three's awful online customer service chat widget?
Getting kicked because you got distracted / needed a piss?
Then this is the code snippet for you
*/
setInterval(() => {
const button = document.getElementById('session_inv_yes');
if (button) {
console.log('Clicked button');
button.click()
}
}, 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment