var ta = document.getElementById('ttttttt');
ta.innerHTML = "Test2";
ta.focus();
ta.select();
console.log(document.execCommand('copy'));
async ContentInBuffer(content) {
try {
await navigator.clipboard.writeText(content);
} catch (err) {
console.error('Ошибка копирования в буфер: ', err);
}
}