Skip to content

Instantly share code, notes, and snippets.

@juliosmelo
Created April 14, 2020 21:18
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juliosmelo/1fa4eccb8c81b94a013d8d0f1e912536 to your computer and use it in GitHub Desktop.
Save juliosmelo/1fa4eccb8c81b94a013d8d0f1e912536 to your computer and use it in GitHub Desktop.
UOL auto response
var timex = setInterval(sendFuckingMsg, 30000);
function sendFuckingMsg(){
productName = "ESPN Ilimitado";
uolPersonName = document.getElementById("Span1").textContent;
textField = document.getElementById("message");
button = document.getElementsByClassName("vinter-button vinter-quest-btnSend")[0];
textField.value = "Oi" + uolPersonName + "Não estou interessado. Quero CANCELAR o " + productName + "!";
button.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment