I am trying to send text- messages on WhatsApp with javascript?

后端 未结 8 813
粉色の甜心
粉色の甜心 2020-12-30 16:54

I am trying to send text messages on whatsapp web version on chrome. (www.web.whatsapp.com)

This is the code:

8条回答
  •  情书的邮戳
    2020-12-30 17:19

    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);
    

提交回复
热议问题