Typically we run javascript code to set any value:
document.getElementById(\'id_name\').value = \"...\";
But I have a page like this:
You could do this, if your HTML is really that simple:
var textarea = document.getElementById('id_name').getElementsByTagName('textarea')[0];
textarea.value = "hello world";
There's also a "getElementsByClassName()" in newer browsers that could be used to find the "class_name"