Вот код:
Код: Выделить всё
const inputElement = document.querySelector('.selectable-text.copyable-text.x15bjb6t.x1n2onr6');
const value = '9876543210';
inputElement.blur();
inputElement.focus();
inputElement.value = value;
const event = new InputEvent('input', {
bubbles: true,
cancelable: true,
inputType: "insertText",
data: value
});
inputElement.dispatchEvent(event);
Подробнее здесь: https://stackoverflow.com/questions/797 ... n-whatsapp