Created
April 14, 2020 21:18
-
-
Save juliosmelo/1fa4eccb8c81b94a013d8d0f1e912536 to your computer and use it in GitHub Desktop.
UOL auto response
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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