Sets the specified attribute of the specified elements to the specified value.
procedure SetElementsAttribute(aElements: TCSElements; aAttribute: string; aValue: string);
//Loading page google.ru LoadURI('google.ru'); //Get elements var elements:=GetElement('input'); //Set the value of the attribute "class" of all elements equal to "MyClass" SetElementsAttribute(elements,'class','MyClass');