procedure TfmMain.mainChromiumBeforeResourceLoad(Sender: TObject;
const browser: ICefBrowser; const frame: ICefFrame;
const request: ICefRequest; const callback: ICefRequestCallback;
out Result: TCefReturnValue);
begin
if LowerCase(request.Method) = 'get' then
begin
request.Url := request.Url + '?paramname=paramvalue';
end;
end;
then the request goes into a loop (cycle), substitutes the parameters several times and as a result does not load anything. Using OLDCEF4Delphi.
Sorry for my english
