Procedure TFFormWeb.Button1Click(Sender: TObject);
Var
Clp : TClipboard;
Begin
Clp := TClipboard.Create;
Clp.AsText := 'hello world';
WebBrowser1.Paste;
Clp.Free;
End;
this can be done with twebbrowser how can I do something similar with TTMSFNCWebBrowser?
Hello
Sorry, I got confused, it was about a TEmbeddedWB, (EmbeddedWB1.Paste;)
but I have also done it with the TChromium component with the Chromium1.ClipboardPaste procedure;
It could be paste or also write, it is to fill in the username and password field of the bank and card pages
s := 'document.getElementById("fname").value = "test";';
That solution would be perfect but I would need to know the name, that is, to know "fname" since it is to be used on pages that I did not make