Delphi XE3 TChromium のコンポーネントを使用して作業を行う ページのコンテンツにアクセスする必要がある ロードされたフォーラム 作業コードの例が見つかりました:
procedure DoWork (const doc: ICefDomDocument);
var
q: ICefDomNode;
begin
q: = doc.GetElementById ('q');
if Assigned (q) then q.SetElementAttribute ('value', 'Hello, world');
end;
procedure actDomExecute;
var
q: ICefDomNode;
begin
crm.Browser.MainFrame.VisitDomProc (DoWork);
end;
しかし、デバッガーは頑固な DoWork の実行を何らかの形でバイパスします。キャッチは何ですか?