I am trying to send text messages on whatsapp web version on chrome. (www.web.whatsapp.com)
This is the code:
The following is the updated script. Hope this helps.
var input = document.querySelector('.block-compose .input');
setTimeout(function(){
for(var j = 0; j < 1; j++) {
input.innerHTML = "Hello";
input.dispatchEvent(new Event('input', {bubbles: true}));
var button = document.querySelector('.block-compose button.icon-send');
button.click();
}
},1000);