Sets the specified attribute of the specified element to the specified value.
setElementAttribute = function(aElement, aAttribute, aValue);
//Loading page google.ru loadURI('google.ru'); //Get an element (request input field) var element = getElement('input',0,['class','id'],['gbqfif','gbqfq'],true); //Set the value of the attribute "name" equal to "MyName" setElementAttribute(element,'value','MyName');