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

后端 未结 8 747
粉色の甜心
粉色の甜心 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:25

    All options didn't work for me. Thats what I did.

    function sendMessage(message) {
        var evt = new Event('input', {
            bubbles: true
        });
    
        var input = document.querySelector("div.input");
        input.innerHTML = message;
        input.dispatchEvent(evt);
    
        document.querySelector(".icon-send").click();
    }
    

提交回复
热议问题