Skip to content

Instantly share code, notes, and snippets.

@amalmurali47
Created January 31, 2020 06:34
Show Gist options
  • Save amalmurali47/dfa6d00a78714328548eae5c260dbafe to your computer and use it in GitHub Desktop.
Save amalmurali47/dfa6d00a78714328548eae5c260dbafe to your computer and use it in GitHub Desktop.
Send messages on web.whatsapp.com
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