delphigoogle-chromedelphi-xe2tchromium

Get HTML Source from Chromium Embedded


How to do this with Delphi Chromium Embedded Component i know how to do this with TWebBrowser. But since no docs are present for this I am sure someone else had same problem.

Thanks


Solution

  • Here is how you do it..

    procedure TCustomLoad.OnLoadEnd(const browser: ICefBrowser;
      const frame: ICefFrame; httpStatusCode: Integer);
      var
      data:tstringlist;
    begin
      data:=tstringlist.create;
      if frame.IsMain then
      data.text:=frame.Source; // HTML Source    
    end;
      data.free;
    end;