Gets the value of the specified attribute of the specified element
function GetElementAttribute(aElement: TCSElement; aAttribute: string): string;
//Loading page google.ru LoadURI('google.ru'); //Get the element (request input field) var element:=GetElement('input',0,['class','id'],['gbqfif','gbqfq'],true); //Get the value of the attribute "name" of element var name:=GetElementAttribute(element,'name');