См., Например, каталог demos \ guiclient .
Обновление: пример установки текста поля ввода на странице iGoogle :
procedure TMainForm.actDomExecute(Sender: TObject);
var
q: ICefDomNode;
begin
crm.Browser.MainFrame.VisitDomProc(
procedure (const doc: ICefDomDocument)
var
q: ICefDomNode;
begin
// "q" is the ID of the text input element
q := doc.GetElementById('q');
if Assigned(q) then
q.SetElementAttribute('value', 'Hello, world');
end
);
end;