Created
January 31, 2020 06:34
-
-
Save amalmurali47/dfa6d00a78714328548eae5c260dbafe to your computer and use it in GitHub Desktop.
Send messages on web.whatsapp.com
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
function sendMessage (message) { | |
window.InputEvent = window.Event || window.InputEvent; | |
var event = new InputEvent('input', { | |
bubbles: true | |
}); | |
var textbox = document.querySelector('div._3u328'); | |
textbox.textContent = message; | |
textbox.dispatchEvent(event); | |
document.querySelector("button._3M-N-").click(); | |
} | |
function randomChoice(arr) { | |
return arr[Math.floor(arr.length * Math.random())]; | |
} | |
var choices = ['random', 'messages', 'here'] # will be taken randomly | |
for(var i=0; i<10; i++) | |
sendMessage(randomChoice(choices)) | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment