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

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

    This works in Dec 2019. Original snippet by Shubham modified by Cami Rodriguez (see comments above).

    function write_in_chat(text) {
       var input = document.querySelector('#main [contenteditable~=true]');
       setTimeout(() => {       
          input.innerHTML = text;
          input.dispatchEvent(new Event('input', {bubbles: true}));
          var button = document.querySelector('button>span[data-icon="send"]').parentElement;
          button.click();
       }, 500);
    }

提交回复
热议问题