I’m trying to send a message on Whatsapp Web (https://web.whatsapp.com/) only using Javascript, for study purposes.
Here is the DIV that has the message box :
JavaScript
x
2
1
<div class="fd365im1 to2l77zo bbv8nyr4 mwp4sxku gfz4du6o ag5g9lrv" contenteditable="true" role="textbox" spellcheck="true" title="Type a message" data-tab="10" data-lexical-editor="true" style="user-select: text; white-space: pre-wrap; word-break: break-word;"><p class="selectable-text copyable-text"><br></p></div>
2
And here is my code :
JavaScript
1
2
1
document.getElementsByClassName('fd365im1 to2l77zo bbv8nyr4 mwp4sxku gfz4du6o ag5g9lrv')[0].innerText = 'My message content';
2
The code runs without errors, but the message field is not filled, nothing happens on the interface. This code used to run before, but not anymore.
What am i missing ? You can try your self accessing the whatsapp web and using Chrome devtools.
Advertisement
Answer
you can use
update*
JavaScript
1
30
30
1
// wait until paste all text
2
function waitForPastedData(elem, old) {
3
if (elem.childNodes && elem.childNodes.length == old) {
4
return true
5
}
6
else {
7
old = elem.childNodes.length
8
return new Promise((resolve, reject) => {
9
setTimeout(() => {
10
resolve(waitForPastedData(elem, old));
11
}, 2000);
12
});
13
}
14
}
15
async function send_text(text) {
16
const dataTransfer = new DataTransfer();
17
dataTransfer.setData('text', text);
18
const event = new ClipboardEvent('paste', {
19
clipboardData: dataTransfer,
20
bubbles: true
21
});
22
let el = document.querySelector('#main .copyable-area [contenteditable="true"][role="textbox"]')
23
el.focus()
24
// select old text and replace with new
25
document.execCommand("selectall");
26
el.dispatchEvent(event)
27
return await waitForPastedData(el, 0)
28
}
29
await send_text('yourtext')
30